login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A292369
Numbers n such that f(f(f(n))) = f(f(n)) + f(n) where f = A000203.
1
2, 4, 16, 25, 64, 4096, 65536, 262144, 1073741824
OFFSET
1,1
COMMENTS
Numbers n such that A066971(n) = A051027(n) + A000203(n).
A061652 is a subsequence.
Are there any odd terms other than 25?
EXAMPLE
25 = 5^2 is a term because sigma(sigma(sigma(5^2))) = sigma(2^5) = sigma(sigma(5^2)) + sigma(5^2).
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 *)
PROG
(PARI) s(n) = sigma(n);
isok(n) = s(s(s(n)))==s(s(n))+s(n);
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Sep 15 2017
EXTENSIONS
a(9) from Giovanni Resta, Sep 15 2017
STATUS
approved