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

A249594
Positions of primes in A249054.
3
2, 4, 7, 11, 12, 14, 17, 18, 19, 22, 23, 27, 30, 32, 34, 37, 38, 41, 42, 45, 47, 50, 51, 53, 54, 55, 58, 61, 64, 65, 68, 71, 72, 74, 75, 78, 80, 81, 84, 87, 89, 90, 94, 97, 100, 102, 105, 108, 109, 111, 113, 116, 117, 119, 120, 123, 125, 129, 133, 134, 135
OFFSET
1,1
COMMENTS
A249054(a(n)) = A000040(n); sequence is strictly increasing, i.e. all primes occur in A249054 in natural order, see also A249595.
LINKS
PROG
(Haskell)
import Data.List (elemIndex); import Data.Maybe (fromJust)
a249594 = (+ 1) . fromJust . (`elemIndex` a249054_list) . a000040
CROSSREFS
Cf. A000040, A026233, A049084, A239968, A249054, A249595 (complement).
Sequence in context: A091263 A101430 A328418 * A127575 A240106 A206853
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 03 2014
STATUS
approved