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.

A326181 Numbers n for which sigma(sigma(n)) = 3*sigma(n).

Original entry on oeis.org

54, 56, 87, 95, 276, 308, 429, 446, 455, 501, 581, 611, 158928, 194928, 195072, 199950, 226352, 234608, 236432, 248325, 255678, 263504, 266192, 273050, 275415, 304575, 336903, 341162, 353675, 366575, 369425, 369843, 380463, 386313, 389463, 406565, 411725, 415925, 422303, 447587, 468743, 497333, 500993, 511829, 515267, 519557, 519677
Offset: 1

Views

Author

Antti Karttunen, Jun 16 2019

Keywords

Comments

Any odd perfect numbers must occur in this sequence, as such numbers must be in the intersection of A000396 and A326051, that is, satisfy both sigma(n) = 2n and sigma(2n) = 6n = 3*2n, thus in combination they must satisfy sigma(sigma(n)) = 3*sigma(n). Note that odd perfect numbers should occur also in A019283.
If, as conjectured, A005820 has 6 terms, then this sequence is finite and has 756 terms. - Giovanni Resta, Jun 17 2019

Crossrefs

Subsequence of A066961.

Programs

  • PARI
    isA326181(n) = { my(s=sigma(n)); (sigma(s)==3*s); };