cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A333242 Prime numbers with an odd number of steps in their prime index chain.

Original entry on oeis.org

2, 5, 7, 13, 19, 23, 29, 31, 37, 43, 47, 53, 59, 61, 71, 73, 79, 89, 97, 101, 103, 107, 113, 131, 137, 139, 149, 151, 163, 167, 173, 179, 181, 193, 197, 199, 223, 227, 229, 233, 239, 251, 257, 263, 269, 271, 281, 293, 307, 311, 313, 317, 331, 337, 347, 349, 359, 373
Offset: 1

Views

Author

Michael P. May, Mar 12 2020

Keywords

Comments

This sequence can also be generated by the N-sieve.

Crossrefs

Cf. A000040, A000720, A078442, A262275 (complement in primes), A333243, A333244.

Programs

  • Maple
    b:= proc(n) option remember;
           `if`(isprime(n), 1+b(numtheory[pi](n)), 0)
        end:
    a:= proc(n) option remember; local p; p:= a(n-1);
          do p:= nextprime(p);
             if b(p)::odd then break fi
          od; p
        end: a(1):=2:
    seq(a(n), n=1..60);  # Alois P. Heinz, Mar 15 2020
  • Mathematica
    Select[Prime@ Range@ 75, EvenQ@ Length@ NestWhileList[ PrimePi, #, PrimeQ] &] (* Giovanni Resta, Mar 15 2020 *)
  • PARI
    \\ here b(n) is A078442.
    b(n)={my(k=0); while(isprime(n), k++; n=primepi(n)); k}
    select(n->b(n)%2, [1..500]) \\ Andrew Howroyd, Mar 15 2020

Formula

{ p in primes : A078442(p) mod 2 = 1 }.
a(n) = A000720(A262275(n)). - Andrew Howroyd, Mar 15 2020

Extensions

Terms a(21) and beyond from Andrew Howroyd, Mar 15 2020