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

A209048
Indices of the pentagonal numbers listed in A209049.
1
1, 2, 4, 3, 12, 11, 32, 27, 75, 192, 427, 171, 1323, 2187, 6912, 8192, 4779, 10923, 49152, 109227, 60075, 170667, 786432, 699051, 1092267, 4893355, 5810859, 11184811, 25864875, 95070891, 101362347, 44739243
OFFSET
0,2
COMMENTS
Pentagonal analog of A076550.
MATHEMATICA
k = 1; t = Table[0, {50}]; While[k < 500000001, a = PrimeOmega[k] + PrimeOmega[3 k - 1] - 1; If[ t[[a + 1]] == 0, t[[a + 1]] = k; Print[{k, a}]]; k++]; t
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Mar 04 2012
STATUS
approved