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.

A094470 Numbers k such that phi(k) | sigma_18(k).

Original entry on oeis.org

1, 2, 3, 6, 22, 33, 66, 262, 750, 786, 2182, 6546, 8646, 56946, 72006, 162066, 222386, 626406, 667158, 737286, 857526, 1223123, 1489686, 1782726, 2446246, 2939046, 3669369, 4388406, 4780947, 6804006, 7338738, 9561894, 10761126, 12157926
Offset: 1

Views

Author

Labos Elemer, May 25 2004

Keywords

Comments

A015759 seems to be a true subsequence here.
sigma_18(n) is the sum of the 18th powers of the divisors of n (A013966). Conjecture: analogous sequences with any 4j+2 exponent instead of 18, includes all terms of A015759 [with exponent=2].

Crossrefs

Programs

  • Mathematica
    Select[Range[10^6], Divisible[DivisorSigma[18, #], EulerPhi[#]] &] (* Amiram Eldar, Mar 07 2020 *)
  • PARI
    isok(k) = (sigma(k, 18) % eulerphi(k)) == 0; \\ Michel Marcus, Mar 07 2020