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.

A292369 Numbers n such that f(f(f(n))) = f(f(n)) + f(n) where f = A000203.

Original entry on oeis.org

2, 4, 16, 25, 64, 4096, 65536, 262144, 1073741824
Offset: 1

Views

Author

Altug Alkan, Sep 15 2017

Keywords

Comments

Numbers n such that A066971(n) = A051027(n) + A000203(n).
A061652 is a subsequence.
Are there any odd terms other than 25?

Examples

			25 = 5^2 is a term because sigma(sigma(sigma(5^2))) = sigma(2^5) = sigma(sigma(5^2)) + sigma(5^2).
		

Crossrefs

Programs

  • Mathematica
    f[n_] := DivisorSigma[1, n]; fQ[n_] := f[f[f[n]]] == f[f[n]] + f[n]; Select[ Range@1000000, fQ] (* Robert G. Wilson v, Sep 23 2017 *)
  • PARI
    s(n) = sigma(n);
    isok(n) = s(s(s(n)))==s(s(n))+s(n);

Extensions

a(9) from Giovanni Resta, Sep 15 2017