The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A275611 a(0) = 1, a(n) = n * a(n-1)^2 + a(n-1). 0
1, 2, 10, 310, 384710, 740009305210, 3285682630785061608169810, 75569972451698504356522006689642008796426176222510, 45686565890803766858880247710072390769807010129716258796255559717444312778982342222557219570421823310 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ c^(2^n) / n, where c = 2.49513423157979814033214501746049499374370018515926861932281537537499551261588753466... - Vaclav Kotesovec, Jan 28 2019
MATHEMATICA
a[n_] := a[n - 1] (n*a[n - 1] + 1); a[0] = 1; Array[a, 9, 0] (* Robert G. Wilson v, Dec 24 2016 *)
PROG
(PARI) a(n) = if(n==0, 1, n * a(n-1)^2 + a(n-1));
CROSSREFS
Cf. A052129.
Sequence in context: A111837 A092123 A079278 * A015178 A296178 A206152
KEYWORD
nonn,easy
AUTHOR
Daniel Suteu, Dec 24 2016
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 14 21:33 EDT 2024. Contains 372533 sequences. (Running on oeis4.)