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!)
A260265 Numbers n such that prime(n) + prime(n+4) + prime(n+5) + prime(n+7) + prime(n+8) = prime(n+1) + prime(n+2) + prime(n+3) + prime(n+6) + prime(n+9). 1
180, 205, 223, 258, 297, 326, 350, 424, 502, 514, 521, 548, 666, 757, 765, 796, 804, 861, 909, 1006, 1098, 1150, 1264, 1317, 1348, 1349, 1400, 1416, 1592, 1613, 1663, 1757, 1821, 1914, 1939, 2034, 2048, 2073, 2085, 2109, 2164, 2276, 2316, 2360, 2380, 2398, 2655 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
180 is in the list because 1069 + 1097 + 1103 + 1117 + 1123 = 1087 + 1091 + 1093 + 1109 + 1129.
MATHEMATICA
Select[Range[5000], Prime[#] + Prime[# + 4] + Prime[# + 5] + Prime[# + 7] + Prime[# + 8] == Prime[# + 1] + Prime[# + 2] + Prime[# + 3] + Prime[# + 6] + Prime[# + 9] &]
PROG
(PARI) for(n=1, 5000, if(prime(n) + prime(n+4) + prime(n+5) + prime(n+7) + prime(n+8) == prime(n+1) + prime(n+2) + prime(n+3) + prime(n+6) + prime(n+9), print1(n, ", ")));
(Magma) [n: n in [1..3000] | NthPrime(n) + NthPrime(n+4)+ NthPrime(n+5)+ NthPrime(n+7)+ NthPrime(n+8) eq NthPrime(n+1)+ NthPrime(n+2)+ NthPrime(n+3)+ NthPrime(n+6)+ NthPrime(n+9)];
CROSSREFS
Sequence in context: A119542 A154360 A253393 * A117551 A068545 A068403
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Jul 21 2015
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 14 16:56 EDT 2024. Contains 372533 sequences. (Running on oeis4.)