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.

A162967 Values taken by the sigma(sigma(n)) function A051027, with repetition, sorted into ascending order.

Original entry on oeis.org

1, 4, 7, 8, 12, 14, 15, 24, 24, 28, 28, 32, 32, 39, 39, 42, 56, 56, 60, 60, 60, 60, 63, 63, 72, 80, 84, 90, 91, 96, 96, 96, 96, 104, 112, 114, 120, 120, 120, 120, 124, 124, 124, 126, 128, 128, 133, 160, 168, 168, 168, 168, 171, 171, 186, 186, 195, 195, 195, 195, 195
Offset: 1

Views

Author

Jaroslav Krizek, Jul 19 2009

Keywords

Comments

Removal of duplicates generates A070286. - R. J. Mathar, Jul 21 2009

Crossrefs

Cf. A007609, A002191. - R. J. Mathar, Jul 21 2009

Programs

  • PARI
    f(k) = {my(v = invsigma(k), c = 0); for(i = 1, #v, c += invsigmaNum(v[i])); c;} \\ using Max Alekseyev's invphi.gp
    list(lim) = {my(m); for(k = 1, lim, m = f(k); for(i = 1, m, print1(k, ", ")));} \\ Amiram Eldar, Dec 26 2024