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.

A202240 a(n) is the smallest number k such that the sum of the n-th powers of the digits of k equals the sum of the divisors of k other than 1 and k.

This page as a plain text file.
%I A202240 #37 Jul 18 2021 03:04:11
%S A202240 125,142,1005,118678,706862,18481615,122003411,30330043,5923078409,
%T A202240 22110133333,120175787632,5971473681952
%N A202240 a(n) is the smallest number k such that the sum of the n-th powers of the digits of k equals the sum of the divisors of k other than 1 and k.
%e A202240 a(5) = 118678 because 1^5 + 1^5 + 8^5 + 6^5 + 7^5 + 8^5  = 90121, and sum of the divisors 1 < d < a(5) = sigma(118678) - 118678 - 1 = 90121.
%o A202240 (PARI) f(k, n) = my(d=digits(k)); sum(i=1, #d, d[i]^n);
%o A202240 a(n) = my(k=1); while(f(k, n) != sigma(k)-k-1, k++); k; \\ _Michel Marcus_, Sep 29 2018
%Y A202240 Cf. A070308 (n=2, "Canada perfect numbers").
%Y A202240 Cf. A202279 (n=3), A202147 (n=4), A202285 (n=5).
%K A202240 nonn,hard,base,more
%O A202240 2,1
%A A202240 _Michel Lagneau_, Dec 16 2011
%E A202240 a(8)-a(9) added by _Amiram Eldar_, Sep 29 2018
%E A202240 a(10)-a(13) from _Giovanni Resta_, Oct 04 2018