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!)
A099137 Iterated pentagonal numbers starting with 2. 1
2, 5, 35, 1820, 4967690, 37016913420305, 2055377818749516111922729385, 6336866966711278058881411525857304983854251425952352645 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Eric Weisstein's World of Mathematics, Pentagonal Number
FORMULA
Let P(n) = n*(3*n-1)/2, a(1) = 2 and a(n) = P(a(n-1)) for n >= 2.
PROG
(PARI) a(n)=if(n==1, 2, a(n-1)*(3*a(n-1)-1)/2); \\ Joerg Arndt, Mar 05 2023
CROSSREFS
Sequence in context: A350955 A193323 A238752 * A309667 A059586 A160968
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 14 2004
EXTENSIONS
Edited by Giovanni Resta, Jun 17 2016
Edited by Joerg Arndt, Mar 05 2023
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 April 24 17:02 EDT 2024. Contains 371962 sequences. (Running on oeis4.)