A269244 Number of times the digit 4 appears in the decimal expansion of n^3.
0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 1, 0, 2, 0, 1, 0, 1, 0, 2, 1, 1, 1, 2, 1, 0, 2, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1
Offset: 0
Examples
0^3 = 0, 1^3 = 1, 2^3 = 8 and 3^3 = 27 all have a(0) = a(1) = a(2) = a(3) = 0 digits '4'. 4^3 = 64 has a(4) = 1 digit '4'. 14^3 = 2744 has a(14) = 2 digits '4'.
Crossrefs
Programs
-
Mathematica
Table[DigitCount[n^3, 10, 4], {n, 0, 100}] (* Robert Price, Mar 21 2020 *)
-
PARI
A269244(n)=#select(t->t==4,digits(n^3))
Comments