[go: up one dir, main page]

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”).

A174242
Least of 3 consecutive integers such that product of them is average of twin prime pairs.
3
1, 3, 10, 13, 14, 20, 30, 34, 40, 44, 110, 129, 135, 139, 154, 175, 188, 220, 229, 238, 273, 315, 405, 413, 440, 464, 465, 503, 520, 560, 569, 579, 583, 590, 685, 688, 695, 758, 833, 835, 859, 868, 903, 959, 1025, 1158, 1378, 1538, 1613, 1624, 1659, 1669
OFFSET
1,2
COMMENTS
1*2*3=6+-1 -> primes, 3*4*5=60+-1 -> primes,...
MATHEMATICA
f1[n_]:=PrimeQ[n-1]&&PrimeQ[n+1]; f2[n_]:=n*(n+1)*(n+2); lst={}; Do[If[f1[f2[n]], AppendTo[lst, n]], {n, 8!}]; lst
CROSSREFS
Sequence in context: A242900 A358266 A299403 * A022415 A344619 A299983
KEYWORD
nonn
AUTHOR
STATUS
approved