login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A152147 Irregular triangle in which row n lists k > 0 such that the sum of digits of k^n equals k. 13

%I #23 May 24 2021 00:47:27

%S 1,2,3,4,5,6,7,8,9,1,9,1,8,17,18,26,27,1,7,22,25,28,36,1,28,35,36,46,

%T 1,18,45,54,64,1,18,27,31,34,43,53,58,68,1,46,54,63,1,54,71,81,1,82,

%U 85,94,97,106,117,1,98,107,108,1,108,1,20,40,86,103,104,106,107,126,134,135

%N Irregular triangle in which row n lists k > 0 such that the sum of digits of k^n equals k.

%C Each row begins with 1 and has length A046019(n).

%H T. D. Noe, <a href="/A152147/b152147.txt">Rows n = 1..1000 of triangle, flattened</a>

%e 1, 2, 3, 4, 5, 6, 7, 8, 9;

%e 1, 9;

%e 1, 8, 17, 18, 26, 27; (A046459, with 0)

%e 1, 7, 22, 25, 28, 36; (A055575 " )

%e 1, 28, 35, 36, 46; (A055576 " )

%e 1, 18, 45, 54, 64; (A055577 " )

%e 1, 18, 27, 31, 34, 43, 53, 58, 68; (A226971 " )

%e 1, 46, 54, 63;

%e 1, 54, 71, 81,

%e 1, 82, 85, 94, 97, 106, 117,

%e 1, 98, 107, 108, etc.

%o (Python)

%o def ok(k, r): return sum(map(int, str(k**r))) == k

%o def agen(rows, startrow=1, withzero=0):

%o for r in range(startrow, rows + startrow):

%o d, lim = 1, 1

%o while lim < r*9*d: d, lim = d+1, lim*10

%o yield from [k for k in range(1-withzero, lim+1) if ok(k, r)]

%o print([an for an in agen(13)]) # _Michael S. Branicky_, May 23 2021

%Y Cf. A046000, A046017, A046471, A133509.

%K base,tabf,nonn

%O 1,2

%A _T. D. Noe_, Nov 26 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 15 00:19 EDT 2024. Contains 375171 sequences. (Running on oeis4.)