A337313 a(n) is the number of n-digit positive integers with exactly three distinct base 10 digits.
0, 0, 648, 3888, 16200, 58320, 195048, 625968, 1960200, 6045840, 18468648, 56068848, 169533000, 511252560, 1539065448, 4627812528, 13904670600, 41756478480, 125354369448, 376232977008, 1129038669000, 3387795483600, 10164745404648, 30496954122288, 91496298184200
Offset: 1
Examples
a(1) = a(2) = 0 since the positive integers must have at least three digits; a(3) = #{xyz in N | x,y,z are three different digits with x != 0} = 9*9*8 = 648; a(4) = 3888 since #[9999] - #[999] - #(1111*[9]) - A335843(4) - #{xywz in N | x,y,w,z are four different digits with x != 0} = 9999 - 999 - 9 - 567 - 9*9*8*7 = 3888; ...
Links
Crossrefs
Programs
-
Mathematica
LinearRecurrence[{6,-11,6},{0,0,648},26]
-
PARI
concat([0,0],Vec(648*x^3/(1-6*x+11*x^2-6*x^3)+O(x^26)))
Comments