The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A220161 a(n) = 1 + 2^(2^n) + 2^(2^(n+1)). 5
7, 21, 273, 65793, 4295032833, 18446744078004518913, 340282366920938463481821351505477763073, 115792089237316195423570985008687907853610267032561502502920958615344897851393 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
For n >= 1, W. Sierpiński proves that a(n) is divisible by 21.
For n >= 1, A. Engel shows that a(n) = a(n-1) * A220294(n-1). - Hans Havermann, Mar 07 2015
REFERENCES
Arthur Engel, Problem-Solving Strategies, Springer, 1998, pages 121-122 (E3, said to be a "recent competition problem from the former USSR").
W. Sierpiński, 250 Problems in Elementary Number Theory. New York: American Elsevier, 1970. Problem #123.
LINKS
FORMULA
a(n) = A000215(n+1) + A000215(n) - 1.
A070969(n) = sqrt(4*a(n) - 3). a(n+1) = a(n) * (1 + a(n) - A070969(n)) = a(n) * (1 + A087046(n+2)) hence a(n) divides a(n+1). - Michael Somos, Dec 10 2012
a(n) = A002061(A000215(n)). - Pontus von Brömssen, Aug 31 2021
MATHEMATICA
Table[1+2^(2^n)+2^(2^(n+1)), {n, 0, 7}] (* Harvey P. Dale, Dec 16 2015 *)
PROG
(Maxima) A220161(n):=1 + 2^(2^n) + 2^(2^(n+1))$ makelist(A220161(n), n, 0, 10); /* Martin Ettl, Dec 10 2012 */
(PARI) vector(10, n, n--; 1 + 2^(2^n) + 2^(2^(n+1))) \\ G. C. Greubel, Aug 10 2018
(Magma) [1 + 2^(2^n) + 2^(2^(n+1)): n in [0..10]]; // G. C. Greubel, Aug 10 2018
(Python)
def a(n): return 1 + 2**(2**n) + 2**(2**(n+1))
print([a(n) for n in range(8)]) # Michael S. Branicky, Jul 21 2021
CROSSREFS
Sequence in context: A111878 A133279 A192734 * A213152 A082826 A130740
KEYWORD
nonn
AUTHOR
Michel Marcus, Dec 06 2012
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 June 1 23:52 EDT 2024. Contains 373032 sequences. (Running on oeis4.)