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!)
A323065 Prime numbers generated by the formula a(n) = round(c(n)), where c(n) = c(n-1)^d for n >= 2 starting with c(1) = C. C and d are the real constants given below. 2
3, 5, 7, 11, 19, 41, 103, 331, 1423, 8819, 86477, 1504949, 53691233, 4703173021, 1267699542037, 1394588856899951, 8916055416478425247 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
C = 3.346835535932430816866371614510056305833213572055338155233562507
and exponent
d = 1.251295195638613270470338478487766898374146819139632632235793814.
LINKS
Simon Plouffe, A set of formulas for primes, arXiv:1901.01849 [math.NT], 2019.
EXAMPLE
c(1) = 3.3468, a(1) = 3; c(2) = 4.53390554, a(2) = 5; c(3) = 6.6288905, a(3) = 7; ...; c(n) = c(n-1)^d and a(n) = {c(n)} is the value rounded to the nearest integer.
MAPLE
# Computes the values according to the formula, s = 3.34683553..., d = 1.2512951, m the number of terms. Returns the real and the rounded values (primes).
val := proc(s, d, m)
local ll, v, n;
v := s;
ll := [v];
for n to m-1 do
v := v^d; ll := [op(ll), v]
end do;
return [ll, map(round, ll)]
end:
CROSSREFS
Cf. A323176.
Sequence in context: A161423 A133846 A056208 * A225421 A175235 A060643
KEYWORD
nonn,more
AUTHOR
Simon Plouffe, Jan 20 2019
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 April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)