A128956 a(n) is equal to the number of positive integers m less than or equal to 10^n such that m is not divisible by at least one of the primes 2,7 and is not divisible by at least one of the primes 3,5.
87, 867, 8667, 86668, 866667, 8666668, 86666667, 866666667, 8666666667, 86666666668, 866666666667, 8666666666668, 86666666666667, 866666666666667, 8666666666666667, 86666666666666668, 866666666666666667
Offset: 2
Keywords
Examples
a(6) = 10^6 - floor(10^6/14) - floor(10^6/15) + floor(10^6/210) = 1000000 - floor(71428.571...) - floor(66666.666...) + floor(4761.904...) = 1000000 - 71428 - 66666 + 4761 = 866667. - _Jon E. Schoenfield_, Nov 18 2018
Links
- Vincenzo Librandi, Table of n, a(n) for n = 2..1000
- Milan Janjic, Enumerative Formulas for Some Functions on Finite Sets
Crossrefs
Cf. A092695.
Programs
-
Magma
[10^n-Floor(10^n/14)-Floor(10^n/15)+Floor(10^n/210): n in [2..20]]; // Vincenzo Librandi, Oct 02 2011
-
Maple
f := n->10^n-floor(10^n/14)-floor(10^n/15)+floor(10^n/210);
Formula
a(n) = 10^n - floor(10^n/14) - floor(10^n/15) + floor(10^n/210).