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.

A133509 Numbers k such that m=1 is the only number for which the sum of digits of m^k equals m.

This page as a plain text file.
%I A133509 #32 Aug 11 2023 16:20:54
%S A133509 0,105,164,186,194,206,216,231,254,282,285,302,314,324,374,386,402,
%T A133509 416,456,468,491,504,521,552,588,606,610,615,629,651,656,657,696,759,
%U A133509 794,830,842,854,870,903,906,954,956,981,998,1029,1064,1079,1082,1109,1112,1131
%N A133509 Numbers k such that m=1 is the only number for which the sum of digits of m^k equals m.
%H A133509 Carole Dubois, <a href="/A133509/b133509.txt">Table of n, a(n) for n = 1..226</a> (terms 1..100 from Michael S. Branicky)
%H A133509 Carole Dubois, <a href="/A133509/a133509.jpg">Pin plot of A133509</a>
%F A133509 If t is a term, A046000(t)=1, A046017(t)=0, A046019(t)=1, A046471(t)=0 and A061211(t)=1. - _Mohammed Yaseen_, Jun 29 2022
%o A133509 (Python)
%o A133509 def ok(n):
%o A133509     d, lim = 1, 1
%o A133509     while lim < n*9*d: d, lim = d+1, lim*10
%o A133509     return not any(sum(map(int, str(k**n))) == k for k in range(2, lim+1))
%o A133509 for k in range(195):
%o A133509     if ok(k): print(k, end=", ") # _Michael S. Branicky_, Jul 06 2022
%Y A133509 Cf. A046000, A046017, A046019, A046471, A061211, A152147.
%K A133509 nonn,base
%O A133509 1,2
%A A133509 _Farideh Firoozbakht_, Dec 04 2007
%E A133509 Description improved by _T. D. Noe_, Nov 26 2008
%E A133509 Extension by _T. D. Noe_, Nov 26 2008
%E A133509 Edited by _Charles R Greathouse IV_, Aug 02 2010
%E A133509 a(1) = 0 and a(46) and beyond from _Michael S. Branicky_, Jul 06 2022