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.

A320425 Numbers k such that sigma(sigma(k^4)) == 0 (mod k^2).

Original entry on oeis.org

1, 2, 4, 8, 16, 19, 38, 76, 152, 304, 608, 1216, 1824, 3744, 3840, 4864, 6400, 7904, 11520, 14592, 19200, 21888, 23712, 24320, 25536, 32768, 33696, 34560, 43776, 71136, 72960, 80640, 102144, 103680, 114688, 121600, 134400, 134784, 213408, 218880, 306432, 311296, 364800, 403200
Offset: 1

Views

Author

Robert G. Wilson v, Jan 08 2019

Keywords

Comments

Inspired by Allan C. Wechsler in seqfan list, Jan 07 2019.
Are 1 and 19 the only odd terms?

Crossrefs

Cf. A202994 (sigma(n^4)).

Programs

  • Mathematica
    fQ[n_] := Mod[DivisorSigma[1, DivisorSigma[1, n^4]], n^2] == 0; Select[Range@ 476671, fQ]
  • PARI
    isok(n) = (sigma(sigma(n^4)) % n^2) == 0; \\ Michel Marcus, Jan 09 2019