OFFSET
1,2
COMMENTS
The continued fraction expansion is indexed [a_0; a_1, a_2, a_3, ...];
Next term > 500. - Michel ten Voorde Jun 14 2003
LINKS
I. Niven, Averages of Exponents in Factoring Integers, Proc. Amer. Math. Soc. 22, 356-360, 1969.
Eric Weisstein's World of Mathematics, Niven's Constant.
FORMULA
A033151(a(n)) = n. - Andrew Howroyd, Sep 11 2024
MATHEMATICA
rd[n_] := rd[n] = RealDigits[ N[1 + Sum[1 - 1/Zeta[j], {j, 2, 2^n}], 400]][[1]]; rd[n = 4]; While[rd[n] =!= rd[n-1], n++]; Niven = FromDigits[{rd[n], 1}]; A033151 = ContinuedFraction[Niven]; a[n_] := Position[A033151, n][[1, 1]]; Table[a[n], {n, 1, 18}] (* Jean-François Alcover, Oct 31 2012 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
More terms from Michel ten Voorde, Jun 14 2003
Terms decreased by 1 for consistency with offset change in A033151 by Andrew Howroyd, Sep 11 2024
STATUS
approved