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

A112988
Position of n-th prime in A089088.
3
2, 5, 9, 12, 19, 23, 30, 34, 41, 52, 55, 65, 73, 77, 85, 95, 105, 110, 121, 128, 133, 143, 151, 162, 175, 182, 187, 195, 200, 208, 231, 239, 249, 253, 271, 276, 286, 298, 306, 318, 328, 332, 350, 354, 362, 366, 387, 408, 416, 420, 427, 439, 443, 461, 472, 483
OFFSET
1,1
COMMENTS
A089088(a(n)) = A000040(n).
LINKS
PROG
(Haskell)
import Data.List (elemIndex)
import Data.Maybe (fromJust)
a112988 = (+ 1) . fromJust . (`elemIndex` a089088_list) . a000040
-- Reinhard Zumkeller, Feb 27 2013
CROSSREFS
Cf. A112976.
Sequence in context: A034307 A239876 A070828 * A218706 A373662 A270950
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 08 2005
STATUS
approved