proposed
approved
proposed
approved
editing
proposed
Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/MycielskiGraph.html">Mycielski Graph</a>
approved
editing
editing
approved
_Alex Fink (finks(AT)telus.net), _, Aug 12 2002
approved
editing
(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 */
Denominator[NestList[# + 1/# &, 1, 10]] (* _Eric W. Weisstein (eric(AT)weisstin.com), _, Mar 05 2011 *)
f[n_]:=n+1/n; Prepend[Denominator[NestList[f, 2, 9]], 1] (* _Vladimir Joseph Stephan Orlovsky (4vladimir(AT)gmail.com), _, Nov 19 2010 *)
a(n) is also the denominator of the fractional chromatic number of the Mycielski graph M_n - _Eric W. Weisstein (eric(AT)weisstein.com), _, Mar 05 2011
proposed
approved