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.

A195943 Zeroless prime powers: Intersection of A000961 and A052382.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 16, 17, 19, 23, 25, 27, 29, 31, 32, 37, 41, 43, 47, 49, 53, 59, 61, 64, 67, 71, 73, 79, 81, 83, 89, 97, 113, 121, 125, 127, 128, 131, 137, 139, 149, 151, 157, 163, 167, 169, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 243, 251, 256, 257, 263, 269, 271, 277, 281, 283, 289, 293, 311
Offset: 1

Views

Author

M. F. Hasler, Sep 25 2011

Keywords

Comments

In contrast to A195942, we also allow for primes (p^n with n=1) in this sequence.

Crossrefs

Programs

  • Haskell
    a195943 n = a195943_list !! (n-1)
    a195943_list = filter ((== 1) . a010055) a052382_list
    -- Reinhard Zumkeller, Sep 27 2011
  • PARI
    for( n=1,9999, is_A000961(n) && is_A052382(n) && print1(n","))
    

Formula

A010055(a(n)) * A168046(a(n)) = 1. - Reinhard Zumkeller, Sep 27 2011