A192370 Sum of all the n-digit numbers whose digits are all even and nonzero: 2,4,6,8.
20, 880, 35520, 1422080, 56888320, 2275553280, 91022213120, 3640888852480, 145635555409920, 5825422221639680, 233016888886558720, 9320675555546234880, 372827022222184939520, 14913080888888739758080, 596523235555554959032320, 23860929422222219836129280
Offset: 1
Examples
a(1) = 2 + 4 + 6 + 8 = 20. a(2) = 22 + 24 + 26 + 28 + 42 + ... + 68 + 82 + 84 + 86 + 88 = 880.
Links
- Index entries for linear recurrences with constant coefficients, signature (44,-160).
Programs
-
Maple
A:=seq(5 * 4^n *(10^n-1)/9,n=1..20);
-
Mathematica
Table[(5*4^n*(10^n - 1))/9, {n, 20}] (* T. D. Noe, Dec 31 2012 *)
-
PARI
a(n)=(5*4^n*(10^n-1))/9 \\ Charles R Greathouse IV, Jul 06 2017
Formula
a(n) = (5 * 4^n * (10^n-1))/9.
From Colin Barker, Jan 04 2013: (Start)
a(n) = 44*a(n-1) - 160*a(n-2).
G.f.: 20*x/((4*x-1)*(40*x-1)). (End)
Comments