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.

A015764 Numbers n such that phi(n) | sigma_6(n).

Original entry on oeis.org

1, 2, 3, 6, 22, 33, 66, 262, 750, 786, 8646, 56946, 222386, 626406, 667158, 737286, 1223123, 2446246, 2939046, 3669369, 6804006, 7338738, 27798250, 31684246, 41697375, 44970486, 53817126, 62128086, 76745867, 83394750, 95052738, 139991987, 153491734, 174684203
Offset: 1

Views

Author

Keywords

Comments

sigma_6(n) is the sum of the 6th powers of the divisors of n.

Crossrefs

Programs

  • Maple
    with(numtheory): A015764:=n->`if`(sigma[6](n) mod phi(n) = 0,n,NULL): seq(A015764(n), n=1..10^5); # Wesley Ivan Hurt, Mar 10 2015
  • Mathematica
    Select[Range[10^5], Divisible[DivisorSigma[6, #], EulerPhi[#]] &] (* Amiram Eldar, Jan 20 2019 *)

Extensions

More terms from Labos Elemer, May 03 2002
a(23)-a(34) from Amiram Eldar, Jan 20 2019