OFFSET
0,1
COMMENTS
This sequence is equivalent to F(n)+ 6 or 2^(2^n)+ 1 + 6. This sequence does not appear to have any special divisibility properties. Fermat numbers of order 5 which are found in A063486, have the divisibility property if n is even, then 7 divides F(n,5). After the first 2 terms the ending digit is the same for all F(n,m) and is (6+m) mod 10.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..11
Tigran Hakobyan, On the unboundedness of common divisors of distinct terms of the sequence a(n)=2^2^n+d for d>1, arXiv:1601.04946 [math.NT], 2016.
FORMULA
F(n,m): The n-th Fermat number of order m = 2^(2^n)+ m. The traditional Fermat numbers are F(n,1) or Fermat numbers of order 1 in this nomenclature.
MATHEMATICA
Table[(2^(2^n) + 7), {n, 0, 15}] (* Vincenzo Librandi, Jan 09 2013 *)
PROG
(PARI) fplusm(n, m)= { local(x, y); for(x=0, n, y=2^(2^x)+m; print1(y", ") ) }
(Magma) [2^(2^n)+7: n in [0..11]]; // Vincenzo Librandi, Jan 09 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jul 05 2007
STATUS
approved