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!)
A354618 a(n) = (sum of the digits of 5^n) - (sum of the digits of 2^n). 0
0, 3, 3, 0, 6, 6, 9, 12, 12, 18, 33, 24, 9, 3, 12, 18, 33, 42, 45, 30, 30, 36, 42, 33, 45, 48, 39, 54, 42, 42, 54, 57, 48, 27, 42, 33, 45, 48, 57, 63, 69, 87, 99, 93, 93, 54, 42, 60, 72, 93, 75, 72, 51, 42, 45, 75, 111, 135, 141, 114, 117, 120, 102, 81, 78, 78 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Wu Wei Chao asked in American Mathematical Monthly for a proof that a(n) >= 0 with a(n) = 0 only if n = 0 or n = 3 (see Richard K. Guy reference).
REFERENCES
Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section F24, Some decimal digital problems, p. 398.
LINKS
FORMULA
a(n) = A066001(n) - A001370(n).
EXAMPLE
a(6) = sod(5^6) - sod(2^6) = sod(15625) - sod(64) = (1+5+6+2+5) - (6+4) = 19 - 10 = 9.
MATHEMATICA
a[n_] := Subtract @@ (Plus @@ IntegerDigits[#] & /@ {5^n, 2^n}); Array[a, 100, 0] (* Amiram Eldar, Jul 09 2022 *)
PROG
(PARI) a(n) = sumdigits(5^n) - sumdigits(2^n); \\ Michel Marcus, Jul 09 2022
(Python)
def a(n): return sum(map(int, str(5**n))) - sum(map(int, str(2**n)))
print([a(n) for n in range(66)]) # Michael S. Branicky, Jul 09 2022
CROSSREFS
Sequence in context: A244492 A210838 A319256 * A117234 A122831 A019701
KEYWORD
nonn,base
AUTHOR
Bernard Schott, Jul 08 2022
STATUS
approved

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 23 02:10 EDT 2024. Contains 371906 sequences. (Running on oeis4.)