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.

A128830 a(n) = the number of positive divisors of n which are coprime to d(n), where d(n) = the number of positive divisors of n.

Original entry on oeis.org

1, 1, 2, 3, 2, 2, 2, 1, 1, 2, 2, 1, 2, 2, 4, 5, 2, 1, 2, 2, 4, 2, 2, 2, 3, 2, 4, 2, 2, 4, 2, 1, 4, 2, 4, 3, 2, 2, 4, 2, 2, 4, 2, 2, 2, 2, 2, 2, 3, 3, 4, 2, 2, 4, 4, 2, 4, 2, 2, 2, 2, 2, 2, 7, 4, 4, 2, 2, 4, 4, 2, 1, 2, 2, 3, 2, 4, 4, 2, 1, 5, 2, 2, 2, 4, 2, 4, 2, 2, 2, 4, 2, 4, 2, 4, 1, 2, 3, 2, 9, 2, 4, 2, 2, 8
Offset: 1

Views

Author

Leroy Quet, Apr 13 2007

Keywords

Examples

			The 6 positive divisors of 20 are 1,2,4,5,10,20. Of these, only 1 and 5 are coprime to d(20) = 6. So a(20) = 2.
		

Programs

  • Maple
    with(numtheory): a:=proc(n) local div,ct,i: div:=divisors(n): ct:=0: for i from 1 to tau(n) do if igcd(div[i],tau(n))=1 then ct:=ct+1 else ct:=ct: fi od: ct; end: seq(a(n),n=1..140); # Emeric Deutsch, Apr 14 2007
  • Mathematica
    cpd[n_]:=Module[{ds=DivisorSigma[0,n]},Count[Divisors[n],?(CoprimeQ[ #,ds]&)]]; Array[cpd,110] (* _Harvey P. Dale, Apr 21 2012 *)

Extensions

More terms from Emeric Deutsch, Apr 14 2007