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
Donovan Johnson, Table of n, a(n) for n = 1..454
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
KEYWORD
nonn,easy,nice
AUTHOR
N. J. A. Sloane, Jan 05 2000
EXTENSIONS
More terms from Jud McCranie, Jul 11 2000
STATUS
approved