login
Search: a178427 -id:a178427
     Sort: relevance | references | number | modified | created      Format: long | short | data
5 followed by the generalized Fermat numbers 6^(2^n)+1 (A078303).
+10
4
5, 7, 37, 1297, 1679617, 2821109907457, 7958661109946400884391937, 63340286662973277706162286946811886609896461828097
OFFSET
0,1
COMMENTS
If a(0) = 3, the recursion formula gives the Fermat numbers (A000215).
With a(0) = 3 instead of 5; a(n) = 2 + product_{i=0..n-1} a(i), n >= 1.
The recurrence equation for generalized Fermat numbers F_n(a) = a^(2^n)+1,
a >= 2, n >= 0, is F_{n}(a) = (F_{n-1}(a)-1)^2 + 1. - Daniel Forgues, Jun 22 2011
FORMULA
a(0) = 5; a(n) = 2 + product_{i=0..n-1} a(i), n >= 1.
From Daniel Forgues, Jun 22 2011: (Start)
The motivation for this sequence comes from the recurrence for generalized Fermat numbers 6^(2^n)+1 (A078303)
a(n) = 5*a(n-1)*a(n-2)*...*a(1)*a(0) + 2, n >= 0, where for n = 0, we get 5*(empty product, i.e., 1)+ 2 = 7 = a(0). This implies that the terms are pairwise coprime. (End)
MATHEMATICA
a[0] := 5;
a[n_] := a[n] = Product[a[i], {i, 0, n - 1}] + 2;
Table[a[n], {n, 0, 10}]
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Roger L. Bagula, May 27 2010
EXTENSIONS
Definition simplified by the Assoc. Eds. of the OEIS - May 28 2010
Edited by Daniel Forgues, Jun 22 2011
STATUS
approved
11 followed by the Fermat numbers A152585.
+10
2
11, 13, 145, 20737, 429981697, 184884258895036417, 34182189187166852111368841966125057, 1168422057627266461843148138873451659428421700563161428957815831003137
OFFSET
0,1
COMMENTS
If a(0)=3, the recursion formula gives A000215.
FORMULA
a(0)=11. a(n)= 2 + Product_{i=0..n-1} a(i).
MATHEMATICA
a[0] := 11;
a[n_] := a[n] = Product[a[i], {i, 0, n - 1}] + 2;
Table[a[n], {n, 0, 10}]
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Roger L. Bagula, May 27 2010
EXTENSIONS
Definition simplified by the Assoc. Eds. of the OEIS - May 28 2010
STATUS
approved
5 followed by A145503.
+10
0
5, 3, 13, 193, 37633, 1416317953, 2005956546822746113, 4023861667741036022825635656102100993, 16191462721115671781777559070120513664958590125499158514329308740975788033
OFFSET
0,1
COMMENTS
The first 6 entries of the sequence are primes.
The Fermat numbers F(.)=A000215(.) obey equations with flipped signs of the +-2 if compared with the a(n) (see the formula section): F(n) = Prod{i=0,...,n-1} F(i)+2 and F(n) = F(n-1) *(F(n-1)-2)+2. - Vladimir Shevelev, Dec 08 2010
FORMULA
a(n)= ( product_{i=0..n-1} a(i)) -2, n>=1.
a(n) = a(n-1)*( a(n-1)+2 )-2, n>=2. - Vladimir Shevelev, Dec 08 2010
MATHEMATICA
Clear[a, n];
a[ -1] := 1; a[0] := 5;
a[n_] := a[n] = Product[a[i], {i, 0, n - 1}] - 2;
Table[a[n], {n, 0, 10}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Roger L. Bagula, May 28 2010
EXTENSIONS
Definition simplified by the Assoc. Eds. of the OEIS, Jun 07 2010
STATUS
approved

Search completed in 0.006 seconds