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!)
A004168 a(n+1) = a(n)*(a(n)+1). 4
3, 12, 156, 24492, 599882556, 359859081592975692, 129498558604939936868397356895854556, 16769876680757063368089314196389622249367851612542961252860614401811692 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The next term (a(8)) has 141 digits. - Harvey P. Dale, Jul 02 2021
LINKS
FORMULA
a(n) = A082732(n+3) - 1. - Max Alekseyev, Aug 09 2019
MAPLE
A004168 := proc(n) option remember; if n=0 then 3 else A004168(n-1)*(A004168(n-1)+1); fi; end;
MATHEMATICA
a = {3}; Do[AppendTo[a, a[[n - 1]] (a[[n - 1]] + 1)], {n, 2, 8}]; a (* Michael De Vlieger, Feb 23 2016 *)
NestList[#(#+1)&, 3, 7] (* Harvey P. Dale, Jul 02 2021 *)
PROG
(Magma) [n eq 1 select 3 else Self(n-1)*(Self(n-1)+1): n in [1..10]]; // Vincenzo Librandi, Feb 23 2016
CROSSREFS
Sequence in context: A098152 A028301 A356719 * A301650 A061960 A120606
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
a(7) from Vincenzo Librandi, Feb 23 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 3 23:22 EDT 2024. Contains 372225 sequences. (Running on oeis4.)