cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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.

Original entry on oeis.org

87, 867, 8667, 86668, 866667, 8666668, 86666667, 866666667, 8666666667, 86666666668, 866666666667, 8666666666668, 86666666666667, 866666666666667, 8666666666666667, 86666666666666668, 866666666666666667
Offset: 2

Views

Author

Milan Janjic, Apr 28 2007

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
		

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).