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!)
A128954 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 2 and is not divisible by at least one of the primes 3, 5 and 7. 1
50, 495, 4952, 49524, 495238, 4952381, 49523810, 495238095, 4952380952, 49523809524, 495238095238, 4952380952381, 49523809523810, 495238095238095, 4952380952380952, 49523809523809524, 495238095238095238 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
FORMULA
a(n) = 10^n - floor(10^n/2) - floor(10^n/105) + floor(10^n/210).
EXAMPLE
a(6) = 10^6 - floor(10^6/2) - floor(10^6/105) + floor(10^6/210) = 1000000 - floor(500000) - floor(9523.809...) + floor(4761.904...) = 1000000 - 500000 - 9523 + 4761 = 495238. - Jon E. Schoenfield, Nov 18 2018
MAPLE
f := n->10^n-floor(10^n/2)-floor(10^n/105)+floor(10^n/210);
PROG
(Magma) [10^n-Floor(10^n/2)-Floor(10^n/105)+Floor(10^n/210): n in [2..20]]; // Vincenzo Librandi, Oct 02 2011
CROSSREFS
Cf. A092695.
Sequence in context: A019561 A164757 A189415 * A022147 A285044 A187669
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 July 16 05:19 EDT 2024. Contains 374343 sequences. (Running on oeis4.)