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.

A056691 Number of divisors d of n with gcd(d+1, n) = 1.

Original entry on oeis.org

1, 1, 2, 2, 2, 1, 2, 3, 3, 2, 2, 3, 2, 2, 3, 4, 2, 2, 2, 3, 4, 2, 2, 4, 3, 2, 4, 4, 2, 3, 2, 5, 3, 2, 4, 5, 2, 2, 4, 5, 2, 1, 2, 4, 4, 2, 2, 6, 3, 3, 3, 4, 2, 3, 4, 6, 4, 2, 2, 5, 2, 2, 6, 6, 4, 3, 2, 4, 3, 3, 2, 7, 2, 2, 5, 4, 4, 2, 2, 7, 5, 2, 2, 5, 4, 2, 3, 6, 2, 5, 3, 4, 4, 2, 3, 7, 2, 3, 5, 5, 2, 3, 2, 6, 6
Offset: 1

Views

Author

Leroy Quet, Aug 10 2000

Keywords

Examples

			The positive divisors of 8 are 1, 2, 4 and 8. (2+1), (4+1) and (8+1) are relatively prime to 8, so a(8) = 3.
		

Crossrefs

Cf. A056692.

Programs

  • Mathematica
    Table[Length[Select[Divisors[n],CoprimeQ[#+1,n]&]],{n,120}] (* Harvey P. Dale, Sep 07 2020 *)
  • PARI
    a(n) = sumdiv(n, d, gcd(d+1, n) == 1); \\ Amiram Eldar, May 23 2025