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.

A084196 Number of primes q

Original entry on oeis.org

0, 0, 1, 1, 3, 0, 2, 1, 5, 2, 2, 0, 3, 1, 6, 3, 6, 0, 1, 7, 0, 3, 6, 4, 1, 2, 2, 6, 0, 3, 3, 5, 2, 3, 3, 3, 0, 1, 9, 2, 9, 1, 8, 0, 3, 3, 1, 4, 6, 0, 3, 11, 0, 8, 2, 8, 6, 3, 0, 2, 1, 5, 3, 7, 0, 2, 1, 0, 5, 1, 2, 13, 2, 0, 3, 10, 3, 0, 2, 0, 11, 0, 11, 2, 5, 5, 6, 0, 4, 2, 6, 13, 2, 5, 2, 13, 4, 4, 1, 0, 1, 4
Offset: 1

Views

Author

Reinhard Zumkeller, May 18 2003

Keywords

Comments

a(A049084(A082539(n)))=0, a(A049084(A084197(n)))>0, a(A049084(A084198(n)))=1;

Examples

			n=5, prime(5)=11: (11+1) mod (q+1) = 0 for 3 primes q<11: 2, 3,
and 5, therefore a(5)=3.
		

Crossrefs

Programs

  • Haskell
    a084196 n = a084196_list !! (n-1)
    a084196_list = f [] a000040_list where
       f ps' (p:ps) = length [q | q <- ps', mod (p + 1) (q + 1) == 0] :
                      f (p : ps') ps where
    -- Reinhard Zumkeller, Jan 06 2014
  • Mathematica
    Table[Count[Mod[p+1,Prime[Range[PrimePi[p]-1]]+1],0],{p,Prime[Range[110]]}] (* Harvey P. Dale, Aug 11 2023 *)