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!)
A053341 Euclid-Pocklington primes: primes of the form Product_{i=1..k} prime(i) * prime(k+1)^m + 1 where prime(r) is the r-th prime and Product_{i=1..k} prime(i) < prime(k+1)^m. 3
3, 5, 7, 17, 19, 151, 163, 257, 487, 751, 1459, 1471, 39367, 65537, 72031, 279511, 33820711, 86093443, 258280327, 372027811, 4092305911, 11149928791, 42638305711, 209481995953231, 411782264189299, 3561193931204911 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Named after the Greek mathematician Euclid (flourished c. 300 B.C.) and the English physicist and mathematician Henry Cabourn Pocklington (1870-1952). - Amiram Eldar, Jun 24 2021
LINKS
EXAMPLE
5 = 2^2+1 is of this form (with k=0).
MATHEMATICA
eucpock[max_] := Module[{p = 1, prod = 1, m, q, r, s = {}}, While[prod < max, prod *= p; q = NextPrime[p]; m = Max[1, Ceiling @ Log[q, prod]]; r = prod * q^m; While[r + 1 <= max, If[PrimeQ[r + 1], AppendTo[s, r + 1]]; r *= q]; p = NextPrime[p]]; Union[s]]; eucpock[10^16] (* Amiram Eldar, Jun 24 2021 *)
CROSSREFS
Cf. A006862.
Sequence in context: A219461 A122853 A137258 * A331894 A357234 A086086
KEYWORD
nonn,easy,nice
AUTHOR
N. J. A. Sloane, Jan 05 2000
EXTENSIONS
More terms from Jud McCranie, Jul 11 2000
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 August 12 01:38 EDT 2024. Contains 375082 sequences. (Running on oeis4.)