OFFSET
1,1
COMMENTS
The exponent d = 1.3007687... is the smallest found.
LINKS
Simon Plouffe, Table of n, a(n) for n = 1..24
Simon Plouffe, A set of formulas for primes, arXiv:1901.01849 [math.NT], 2019.
Simon Plouffe, Une formule pour les nombres premiers, viXra:1902.0036.
FORMULA
a(n) = round(2^(d^n)), where d is a real constant starting 1.30076870414817691055252567828266106688423996320151467218595488...
MAPLE
# Computes the values according to the formula, v = 2..., e = 1.30076870414817691055252567828266106688423996320151467218595488..., m the # number of terms. Returns the real and the rounded values (primes). In this case 23 terms will be generated
val := proc(s, e, m)
local ll, v, n, kk;
v := s;
ll := [];
for n to m do
v := v^e; ll := [op(ll), v]
end do;
return [ll, map(round, ll)]
end;
CROSSREFS
KEYWORD
nonn
AUTHOR
Simon Plouffe, Feb 06 2019
STATUS
approved