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.

A055712 Numbers k such that k | sigma_8(k).

Original entry on oeis.org

1, 84, 156, 204, 364, 476, 514, 1092, 1428, 2316, 2652, 2892, 6069, 6188, 6748, 12138, 12532, 16212, 16388, 18564, 20244, 24276, 30108, 37596, 39372, 49164, 63291, 78897, 87724, 99202, 114716, 126582, 147679, 157794, 167331
Offset: 1

Views

Author

Robert G. Wilson v, Jun 09 2000

Keywords

Comments

sigma_8(k) is the sum of the 8th powers of the divisors of k (A013956).
Problem 11090 proves that this sequence is infinite. - T. D. Noe, Apr 18 2006

Crossrefs

Programs

  • Mathematica
    Do[If[Mod[DivisorSigma[8, n], n]==0, Print[n]], {n, 1, 10000}]
    Select[Range[170000],Divisible[DivisorSigma[8,#],#]&] (* Harvey P. Dale, Sep 15 2019 *)
  • PARI
    is(n)=sigma(n,8)%n==0 \\ Charles R Greathouse IV, Feb 04 2013