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”).

A168558
a(n) = n + a(n-1)^2 for n>1, a(1)=0.
1
0, 2, 7, 53, 2814, 7918602, 62704257634411, 3931823925482590177731316929, 15459239380997324838780881526042196711953237316641991050
OFFSET
1,2
LINKS
MATHEMATICA
RecurrenceTable[{a[1] == 0, a[n] == a[n-1]^2 + n}, a, {n, 20}] (* Vincenzo Librandi, Sep 24 2014 *)
PROG
(Magma) [n le 1 select (n-1) else Self(n-1)^2+n: n in [1..10] ]; // Vincenzo Librandi, Sep 24 2014
CROSSREFS
Sequence in context: A053465 A193191 A180720 * A024027 A079410 A371617
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Nov 29 2009
STATUS
approved