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

A244796
Number of moduli m such that (prime(n) mod m) = 1.
4
0, 1, 2, 3, 3, 5, 4, 5, 3, 5, 7, 8, 7, 7, 3, 5, 3, 11, 7, 7, 11, 7, 3, 7, 11, 8, 7, 3, 11, 9, 11, 7, 7, 7, 5, 11, 11, 9, 3, 5, 3, 17, 7, 13, 8, 11, 15, 7, 3, 11, 7, 7, 19, 7, 8, 3, 5, 15, 11, 15, 7, 5, 11, 7, 15, 5, 15, 19, 3, 11, 11, 3, 7, 11, 15, 3, 5, 17
OFFSET
1,3
COMMENTS
Except for the initial 0, this is column 1 of the array at A244740,
LINKS
FORMULA
a(n) = A000005(prime(n) - 1) - 1. - Gionata Neri, Jul 04 2017
EXAMPLE
prime(5) = 11 = (1 mod m) for m = 2, 5, 10, so that a(5) = 3.
MATHEMATICA
z = 300; f[n_, m_] := If[Mod[Prime[n], m] == 1, 1, 0];
t = Table[f[n, m], {n, 1, z}, {m, 1, Prime[n]}];
Table[Count[t[[k]], 1], {k, 1, z}] (* A244796 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 06 2014
STATUS
approved