login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A072898
Numerator of c(n) where c(0)=1, c(n+1) = n/c(n) + 1.
1
1, 1, 2, 2, 5, 13, 38, 58, 191, 655, 2374, 4462, 17519, 71063, 298810, 646846, 2887921, 13237457, 62332114, 150303170, 742458253, 3748521653, 19340144966, 50903810666, 273315477775, 1495006933759, 8327893878134, 23599037077934
OFFSET
0,3
LINKS
Roberto Dvornicich, Francesco Veneziano, and Umberto Zannier, On the integral values of a curious recurrence, arXiv:1403.3470 [math.NT], 2014.
FORMULA
It seems that log(a(n)) is asymptotic to C*n*Log(n) with C=0.4....
PROG
(PARI) lista(nn) = {my(x = 1); for (n=0, nn, print1(numerator(x), ", "); x = 1+ n/x; ); } \\ Michel Marcus, Dec 24 2020
CROSSREFS
Cf. A072899.
Sequence in context: A019083 A355863 A029856 * A032290 A032201 A268180
KEYWORD
easy,frac,nonn
AUTHOR
Benoit Cloitre, Aug 10 2002
EXTENSIONS
a(0)=1 prepended by Michel Marcus, Dec 24 2020
STATUS
approved