OFFSET
1,3
COMMENTS
a(n) is also the denominator of the fractional chromatic number of the Mycielski graph M_n - Eric W. Weisstein, Mar 05 2011
REFERENCES
H. L. Montgomery, Ten Lectures on the Interface Between Analytic Number Theory and Harmonic Analysis, Amer. Math. Soc., 1996, p. 187.
D. J. Newman, A Problem Seminar, Springer; see Problem #60.
J. H. Silverman, The arithmetic of dynamical systems, Springer, 2007, see p. 113 Table 3.1
LINKS
Eric Weisstein's World of Mathematics, Fractional Chromatic Number
Eric Weisstein's World of Mathematics, Mycielski Graph
MATHEMATICA
f[n_]:=n+1/n; Prepend[Denominator[NestList[f, 2, 9]], 1] (* Vladimir Joseph Stephan Orlovsky, Nov 19 2010 *)
Denominator[NestList[# + 1/# &, 1, 10]] (* Eric W. Weisstein, Mar 05 2011 *)
PROG
(PARI) {a(n) = local(x, y); if( n<1, 0, if( n<3, n, x = a(n-2)^2; y = a(n-1); y*y + x * (y - x)))} /* Michael Somos, Mar 05 2012 */
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Alex Fink, Aug 12 2002
STATUS
approved