Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A178425
29 followed by the base-30 Fermat numbers.
0
29, 31, 901, 810001, 656100000001, 430467210000000000000001, 185302018885184100000000000000000000000000000001, 34336838202925124846578490892810000000000000000000000000000000000000000000000000000000000000001
OFFSET
0,1
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