A337314 a(n) is the number of n-digit positive integers with exactly four distinct base 10 digits.
0, 0, 0, 4536, 45360, 294840, 1587600, 7715736, 35244720, 154700280, 661122000, 2773768536, 11487556080, 47136955320, 192126589200, 779279814936, 3149513947440, 12695388483960, 51073849285200, 205172877726936, 823325141746800, 3301203837670200, 13228529919066000
Offset: 1
Examples
a(1) = a(2) = a(3) = 0 since the positive integers must have at least four digits; a(4) = #{wxyz in N | w,x,y,z are four different digits with w != 0} = A073531(4) = 4536; a(5) = 45360 since #[99999] - #[9999] - #(11111*[9]) - A335843(5) - A337313(5) - #{vwxyz in N | v,w,x,y,z are five different digits with v != 0} = 99999 - 9999 - 9 - 1215 - 16200 - 9*9*8*7*6 = 45360; ...
Links
- Index entries for linear recurrences with constant coefficients, signature (10,-35,50,-24).
- Index entries for sequences related to digits.
Crossrefs
Programs
-
Mathematica
LinearRecurrence[{10,-35,50,-24},{0,0,0,4536},23]
-
PARI
concat([0,0,0],Vec(4536*x^4/(1-10*x+35*x^2-50*x^3+24*x^4)+O(x^24)))
Comments