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.

A332216 Fixed points of A332221: Numbers k such that A156552(sigma(k)) is equal to k.

Original entry on oeis.org

2, 3, 5, 7, 11, 19, 23, 31, 47, 55, 79, 87, 127, 191, 383, 1279, 5119, 6143, 8191, 20479, 81919, 131071, 524287, 786431, 1310719, 2147483647
Offset: 1

Views

Author

Antti Karttunen, Feb 10 2020

Keywords

Comments

Equally, numbers k such that sigma(k) is equal to A005940(1+k).
The primes in this sequence are obtained by subtracting 1 from those terms of A029747 that are one more than a prime.
Questions: Are there other composite terms than 55 and 87? Are there other even terms than 2? (All such even terms should also occur in A332218).

Crossrefs

Programs

  • Mathematica
    Select[Range[10^5], DivisorSigma[1, #] == Block[{p = Partition[Split[Join[IntegerDigits[#, 2], {2}]], 2], q}, Times @@ Flatten[Table[q = Take[p, -i]; Prime[Count[Flatten[q], 0] + 1]^q[[1, 1]], {i, Length[p]}]]] &] (* Michael De Vlieger, Feb 12 2020, after Robert G. Wilson v at A005940 *)