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

A048628
n-th 4k+1 prime times (n+1)st 4k+3 prime.
2
35, 143, 323, 667, 1147, 1763, 2491, 3599, 4891, 6319, 7663, 8383, 11227, 12091, 17399, 19519, 21823, 26123, 29503, 32231, 35263, 43739, 46367, 50851, 57311, 61063, 66203, 70531, 77059, 84823, 89711, 103459
OFFSET
1,1
LINKS
FORMULA
a(n) = A002144(n) * A002145(n+1). - Sean A. Irvine, Jun 24 2021
MATHEMATICA
Module[{nn=100, p1, p3, len}, p1=Select[Prime[Range[nn]], Mod[#, 4]==1&]; p3= Rest[Select[Prime[Range[nn]], Mod[#, 4]==3&]]; len=Min[Length[p1], Length[ p3]]; Times@@@Thread[{Take[p1, len], Take[p3, len]}]] (* Harvey P. Dale, Jan 09 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Den Roussel (DenRoussel(AT)webtv.net)
STATUS
approved