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

A328466
Row 3 of A328464: a(n) = A276156(8n - 4) / 6.
3
1, 6, 36, 41, 386, 391, 421, 426, 5006, 5011, 5041, 5046, 5391, 5396, 5426, 5431, 85086, 85091, 85121, 85126, 85471, 85476, 85506, 85511, 90091, 90096, 90126, 90131, 90476, 90481, 90511, 90516, 1616616, 1616621, 1616651, 1616656, 1617001, 1617006, 1617036, 1617041, 1621621, 1621626, 1621656, 1621661, 1622006, 1622011
OFFSET
1,2
FORMULA
a(n) = (1/6) * A276156(8*n - 4).
PROG
(PARI)
A002110(n) = prod(i=1, n, prime(i));
A276156(n) = { my(p=2, pr=1, s=0); while(n, if(n%2, s += pr); n >>= 1; pr *= p; p = nextprime(1+p)); (s); };
A328466(n) = (A276156((8*n)-4) / 6);
CROSSREFS
Row 3 of A328464.
Sequence in context: A222784 A043063 A348384 * A232137 A008460 A132633
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 18 2019
STATUS
approved