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.

A195470 Number of numbers k with 0 <= k < n such that 2^k + 1 is multiple of n.

Original entry on oeis.org

1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 1, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0
Offset: 1

Views

Author

Reinhard Zumkeller, Sep 21 2011

Keywords

Comments

a(A014657(n)) > 0; for n > 1: a(A014661(n)) = 0.

Examples

			a(1)=#{0}=1, (2^0 + 1) mod 1;
a(17) = #{4, 12} = 2, (2^4 + 1) mod 17 = (2^12 + 1) mod 17 = 0;
a(18) = #{} = 0;
a(19) = #{9} = 1, (2^9 + 1) mod 19 = 0.
		

Crossrefs

Programs

  • Haskell
    a195470 n = length $ filter ((== 0) . (`mod` n)) $
                           take (fromInteger n) a000051_list
  • Mathematica
    nn = 100; pwrs = 2^Range[0, nn] + 1; Table[cnt = 0; Do[If[Mod[pwrs[[i]], n] == 0, cnt++], {i, n}]; cnt, {n, nn}] (* T. D. Noe, Sep 30 2011 *)