login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A284550
Integers n such that prime(n) + prime(n+1) + prime(n+2) + prime(n+3) + prime(n)*prime(n+1)*prime(n+2)*prime(n+3) is prime.
1
1, 2, 9, 35, 45, 61, 80, 84, 97, 98, 124, 130, 140, 142, 175, 179, 185, 213, 241, 249, 287, 300, 324, 344, 346, 352, 366, 368, 369, 384, 389, 398, 400, 409, 431, 436, 437, 462, 515, 520, 525, 530, 544, 565, 592, 594, 595, 614, 615, 627, 628, 682, 719, 745, 778, 798, 835, 852, 861
OFFSET
1,2
LINKS
EXAMPLE
n=1: 2+3+5+7+2*3*5*7=227=A000040(49),
n=2: 3+5+7+11+3*5*7*11=1181=A000040(194).
MATHEMATICA
Position[Total[#]+Times@@#&/@Partition[Prime[Range[1000]], 4, 1], _?PrimeQ]//Flatten (* Harvey P. Dale, Jul 18 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Mar 29 2017
STATUS
approved