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!)
A074328 Numbers m such that prime(m^2+1)-prime(m^2)=2, where prime(j) is the j-th prime. 0
7, 8, 9, 12, 15, 16, 22, 25, 27, 34, 53, 83, 85, 88, 95, 107, 108, 144, 149, 187, 196, 223, 234, 238, 249, 255, 268, 274, 315, 324, 350, 355, 358, 367, 386, 410, 411, 416, 424, 436, 440, 445, 450, 462, 469, 471, 481, 494, 501, 509, 511, 517, 522, 549, 554, 564 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Square roots of squares in A029707. - Michel Marcus, Oct 20 2022
LINKS
EXAMPLE
25 is here because 626th and 625th primes are twin: 4639-4637=2.
MATHEMATICA
t=Table[0, {250}]; t1=Table[0, {250}]; s=0; k=0; Do[s=Prime[1+n^2]-Prime[n^2]; If[s==2, k=k+1; t[[k]]=n; t1[[k]]=Prime[n^2]; Print[{k, n, Prime[n^2]}]], {n, 1, 2500}] t t1
PROG
(PARI) isok(m) = my(p=prime(m^2)); nextprime(p+1) - p == 2; \\ Michel Marcus, Oct 20 2022
CROSSREFS
Sequence in context: A138580 A192050 A045158 * A174185 A309152 A170933
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 21 2002
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 19 08:36 EDT 2024. Contains 371782 sequences. (Running on oeis4.)