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!)
A178425 29 followed by the base-30 Fermat numbers. 0
29, 31, 901, 810001, 656100000001, 430467210000000000000001, 185302018885184100000000000000000000000000000001, 34336838202925124846578490892810000000000000000000000000000000000000000000000000000000000000001 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n)= 30^(2^(n-1))+1, n>0.
a(n)= 2+ product_{i<n} a(i).
a(n)= 1 + (a(n-1)-1)^2, n>1.
MATHEMATICA
Clear[a, n];
a[0] := 29;
a[n_] := a[n] = Product[a[i], {i, 0, n - 1}] + 2;
Table[a[n], {n, 0, 10}]
CROSSREFS
Sequence in context: A158342 A077286 A235364 * A344796 A294737 A261521
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, May 27 2010
EXTENSIONS
Edited by the Assoc. Eds. of the OEIS, Jul 20 2010
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 July 12 16:40 EDT 2024. Contains 374251 sequences. (Running on oeis4.)