# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a085978 Showing 1-1 of 1 %I A085978 #10 May 30 2021 11:10:01 %S A085978 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, %T A085978 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, %U A085978 1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0 %N A085978 Number of 4's in decimal expansion of prime(n). %H A085978 Reinhard Zumkeller, Table of n, a(n) for n = 1..10000 %t A085978 DigitCount[#,10,4]&/@Prime[Range[110]] (* _Harvey P. Dale_, May 30 2021 *) %o A085978 (Haskell) %o A085978 a085978 = count4 0 . a000040 where %o A085978 count4 c x | d == 4 = if x < 10 then c + 1 else count4 (c + 1) x' %o A085978 | otherwise = if x < 10 then c else count4 c x' %o A085978 where (x', d) = divMod x 10 %o A085978 -- _Reinhard Zumkeller_, Apr 08 2014 %Y A085978 Cf. 0's A085974, 1's A085975, 2's A085976, 3's A085977, 5's A085979, 6's A085980, 7's A085981, 8's A085982, 9's A085983. %K A085978 base,nonn %O A085978 1,86 %A A085978 _Jason Earls_, Jul 06 2003 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE