A367629 a(n) = 2^2^(n + 1) - 2^(n + 2).
8, 240, 65504, 4294967232, 18446744073709551488, 340282366920938463463374607431768211200, 115792089237316195423570985008687907853269984665640564039457584007913129639424
Offset: 1
Links
- J Gregory Moxness, Table of n, a(n) for n = 1..10
Programs
-
Mathematica
Table[2^2^(n+1)-2^(n+2),{n,10}] (* Harvey P. Dale, Aug 23 2024 *)
-
Python
def A367629(n): return (1<<(m:=1<
Chai Wah Wu, Nov 29 2023
Formula
a(n) = A107584(2^n).
Extensions
Previous Mathematica program replaced by Harvey P. Dale, Aug 23 2024
Comments