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!)
A055565 Sum of digits of n^4. 9

%I #22 Nov 16 2021 07:29:10

%S 0,1,7,9,13,13,18,7,19,18,1,16,18,22,22,18,25,19,27,10,7,27,22,31,27,

%T 25,37,18,28,25,9,22,31,27,25,19,36,28,25,18,13,31,27,25,37,18,37,43,

%U 27,31,13,27,25,37,27,28,43,18,31,22,18,34,37,36,37,34,45,13,31,27,7

%N Sum of digits of n^4.

%H Seiichi Manyama, <a href="/A055565/b055565.txt">Table of n, a(n) for n = 0..10000</a>

%F a(n) = A007953(A000583(n)). - _Michel Marcus_, Feb 23 2015

%e a(2) = 7 because 2^4 = 16 and 1+6 = 7.

%p for i from 0 to 200 do printf(`%d,`,add(j, j=convert(i^4, base, 10))) od;

%t a[n_Integer]:=Apply[Plus, IntegerDigits[n^4]]; Table[a[n], {n, 0, 100}] (* _Vincenzo Librandi_, Feb 23 2015 *)

%o (Sage) [sum((n^4).digits()) for n in (0..70)] # _Bruno Berselli_, Feb 23 2015

%o (PARI) a(n) = sumdigits(n^4); \\ _Seiichi Manyama_, Nov 16 2021

%Y Cf. A000583, A007953, A004159, A004164, A055566, A055567, A055570, A055575, A066588.

%K nonn,base

%O 0,3

%A _Henry Bottomley_, Jun 19 2000

%E More terms from _James A. Sellers_, Jul 04 2000

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 April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)