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

A210477
Product of adjacent primes with a gap of 6.
2
667, 1147, 2491, 3127, 4087, 5767, 7387, 17947, 23707, 25591, 28891, 30967, 55687, 64507, 67591, 70747, 75067, 111547, 126727, 136891, 141367, 148987, 190087, 198907, 256027, 295927, 313591, 320347, 329467, 348091, 355207, 364807, 372091, 422491, 430327, 462391, 532891
OFFSET
1,1
COMMENTS
Subsequence of A111192.
Sum_{n>=1} 1/a(n) > 0.00405067912.
LINKS
FORMULA
a(n) = A031924(n)*(A031924(n)+6).
MAPLE
A210477 := proc(n)
A031924(n)*(A031924(n)+6) ;
end proc:
seq(A210477(n), n=1..100) ; # R. J. Mathar, Jan 23 2013
MATHEMATICA
Times@@@Select[Partition[Prime[Range[200]], 2, 1], #[[2]]-#[[1]]==6&] (* Harvey P. Dale, Aug 22 2019 *)
CROSSREFS
Sequence in context: A046694 A326255 A326256 * A138563 A327908 A092797
KEYWORD
nonn
AUTHOR
R. J. Mathar, Jan 23 2013
STATUS
approved