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!)
A357252 Primes in A357251. 2
19, 14479, 43609, 406171, 711959, 1330177, 2698231, 3918157, 18987169, 26135339, 194727347, 269998639, 975929347, 5005853669, 8430389621, 24830247671, 36372313009, 69703708967, 93194681917, 126628534313, 139478926201, 304123612349, 359101509211, 384305009171, 387550106843, 400722388999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes that are, for some N, the sum of p*q for all pairs of primes (p,q) with p <= q <= N.
LINKS
EXAMPLE
a(2) = 14479 is in the sequence because 14479 = A357251(11) is the sum of p*q for primes p <= q <= 31 and is prime.
MAPLE
p:= 2: a:= 4: s:= 2: R:= NULL: count:= 0:
for i from 1 while count < 100 do
p:= nextprime(p);
s:= s + p;
a:= a + p*s;
if isprime(a) then count:= count+1; R:= R, a; fi
od:
R;
CROSSREFS
Cf. A357251.
Sequence in context: A265169 A174306 A270069 * A186165 A198412 A110392
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Sep 20 2022
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)