login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A143762 a(n+1) = a(n)^2 + n*a(n) + n^2, a(1) = 1. 6
1, 3, 19, 427, 184053, 33876427099, 1147612313197120118431, 1317014021401644919149757309088631306730827, 1734525932568532421128602190712731410907662021613907396581559184320372648524685950609 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Let f(n+1,k) = f(n,k)^2 + k*n*f(n,k) + n^2, f(1, k) = 1:
f(n,0)=A143760(n), f(n,-1)=A143761(n), f(n,+1)=a(n),
f(n,-2)=A143763(n), f(n,+2)=A143764(n), f(n,-3)=A143765(n),
f(n,+3)=A143766(n).
LINKS
FORMULA
a(n) ~ c^(2^n), where c = 1.460594463210996899745335217057197049886968082959330102210304982704405107261... . - Vaclav Kotesovec, Dec 18 2014
MATHEMATICA
RecurrenceTable[{a[n+1] == a[n]^2 + n*a[n] + n^2, a[1] == 1}, a, {n, 1, 10}] (* Vaclav Kotesovec, Dec 18 2014 *)
nxt[{n_, a_}] := {n + 1, a^2 + n*a + n^2}; NestList[nxt, {1, 1}, 10][[All, 2]] (* Harvey P. Dale, Sep 12 2018 *)
CROSSREFS
Sequence in context: A195638 A041951 A365362 * A228149 A358161 A079281
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Sep 01 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 7 09:38 EDT 2024. Contains 372302 sequences. (Running on oeis4.)