The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A122001 Number of representations of prime p = prime(n) as 2*(p1-p2)+3*p3 (where p1, p2, p3 are primes less than or equal to p), for which p+2*p2(=2*p1+3*p3) is also a prime. 0
0, 0, 0, 1, 0, 3, 7, 5, 7, 8, 6, 17, 15, 10, 13, 19, 9, 21, 24, 18, 29, 28, 25, 37, 37, 29, 32, 34, 37, 47, 40, 37, 63, 51, 57, 59, 69, 47, 58, 67, 65, 68, 65, 69, 65, 60, 73, 97, 90, 109, 103, 82, 111, 112, 96, 106, 140 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
EXAMPLE
a(6)=3 because although 13 (the 6th prime) can be expressed as 2*(p1-p2) + 3*p3 in the following ways:
2*(2 - 3) + 3*5
2*(3 - 7) + 3*7
2*(3 - 13) + 3*11
2*(5 - 3) + 3*3
2*(7 - 5) + 3*3
2*(7 - 11) + 3*7
2*(13 - 11) + 3*3
only for the three of them (first, fourth and fifth) p+2*p2 is also a prime (19, 19, 23, respectively).
PROG
(PARI) a(n) = {my(vp = primes(n), nb=0, p=prime(n), p1, p2, p3); for (i=1, #vp, p1 = vp[i]; for (j=1, #vp, p2 = vp[j]; for (k=1, #vp, p3 = vp[k]; if ((2*(p1-p2) + 3*p3 == p) && isprime(p+2*p2), nb++); ); ); ); nb; } \\ Michel Marcus, Jan 26 2021
CROSSREFS
Sequence in context: A019638 A116535 A287660 * A161327 A151685 A019809
KEYWORD
nonn
AUTHOR
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 May 20 03:01 EDT 2024. Contains 372703 sequences. (Running on oeis4.)