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.

A244798 Number of moduli m such that (prime(n) mod m) = 3.

Original entry on oeis.org

0, 0, 0, 1, 2, 2, 2, 3, 4, 2, 4, 2, 2, 6, 4, 4, 6, 2, 5, 4, 6, 4, 8, 2, 2, 4, 7, 6, 2, 6, 4, 6, 2, 6, 2, 4, 6, 10, 4, 6, 8, 2, 4, 6, 2, 7, 8, 10, 10, 2, 6, 4, 6, 6, 2, 10, 6, 4, 2, 2, 14, 6, 8, 10, 6, 2, 6, 2, 6, 2, 10, 4, 10, 6, 6, 10, 2, 2, 2, 6, 10, 6, 4
Offset: 1

Views

Author

Clark Kimberling, Jul 06 2014

Keywords

Comments

Except for the initial 0, 0, 0, this is column 3 of the array at A244740.

Examples

			prime(5) = 11 = (2 mod m) for m = 3, 9 so that a(5) = 2.
		

Crossrefs

Programs

  • Mathematica
    z = 300; f[n_, m_] := If[Mod[Prime[n], m] == 3, 1, 0];
    t = Table[f[n, m], {n, 1, z}, {m, 1, Prime[n]}];
    Table[Count[t[[k]], 1], {k, 1, z}] (* A244798 *)

Formula

a(n) = A070824(A086801(n)), for n > 2. - Ridouane Oudra, Mar 17 2024