login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A128952 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 the prime 3 and is not divisible by at least one of the primes 2, 5 and 7. 1
66, 657, 6572, 65715, 657143, 6571429, 65714286, 657142857, 6571428572, 65714285715, 657142857143, 6571428571429, 65714285714286, 657142857142857, 6571428571428572, 65714285714285715, 657142857142857143 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
FORMULA
a(n) = 10^n - floor(10^n/3) - floor(10^n/70) + floor(10^n/210).
EXAMPLE
a(6) = 10^6 - floor(10^6/3) - floor(10^6/70) + floor(10^6/210) = 1000000 - floor(333333.333...) - floor(14285.714...) + floor(4761.904...) = 1000000 - 333333 - 14285 + 4761 = 657143. - Jon E. Schoenfield, Nov 18 2018
MAPLE
a := n->10^n-floor(10^n/3)-floor(10^n/70)+floor(10^n/210);
MATHEMATICA
Table[With[{c=10^n}, c-Floor[c/3]-Floor[c/70]+Floor[c/210]], {n, 2, 20}] (* Harvey P. Dale, Jun 22 2022 *)
PROG
(Magma) [10^n-Floor(10^n/3)-Floor(10^n/70)+Floor(10^n/210): n in [2..20]]; // Vincenzo Librandi, Oct 02 2011
CROSSREFS
Cf. A092695.
Sequence in context: A233065 A129218 A046409 * A282050 A270258 A223410
KEYWORD
nonn
AUTHOR
Milan Janjic, Apr 28 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 08:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)