OFFSET
0,1
COMMENTS
Only first 42 terms are integers (see A003504).
LINKS
Eric Weisstein's World of Mathematics, Goebel's Sequence.
EXAMPLE
a(2) = 6 * (1 + 6/2^2) = 15.
MATHEMATICA
Block[{n = 0}, NestList[#*(1 + #/++n^2) &, 2, 11]] (* Paolo Xausa, Apr 17 2024 *)
PROG
(PARI) {a(n) = local(x); if( n<1, 2 * (n==0), (x = a(n-1)) + (x/n)^2)} /* Michael Somos, Apr 02 2006 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Henry Bottomley, Apr 24 2001
STATUS
approved