A086073 Number of 2's in decimal expansion of triangular number n(n+1)/2.
0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0
Offset: 0
Examples
tri(49)=1225, so a(49)=2 and tri(651)=212226, so a(651)=4.
Crossrefs
Programs
-
Mathematica
DigitCount[#,10,2]&/@Accumulate[Range[0,120]] (* Harvey P. Dale, Jan 02 2016 *)