A130741 a(n) = 4^(4^n) + 3.
7, 259, 4294967299, 340282366920938463463374607431768211459
Offset: 0
Examples
For n = 0, 4^(4^0) + 3 = 4 + 3 = 7, the first entry.
Links
- Andrew Howroyd, Table of n, a(n) for n = 0..5
Programs
-
PARI
a(n) = 4^(4^n) + 3
Formula
This function is derived from the odd case of Fermat numbers of order 3 or F(m,3) = 2^(2^m)+3. Let m = 2n+1, to get 2^(2^(2n+1)) + 3 = 2^(2*2^(2*n))+3 = 4^(2^(2*n))+3 = 4^(4^n) + 3.
a(n) = 3+A137840(n). - R. J. Mathar, Sep 10 2016
Comments