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!)
A241662 Numbers of the form m * 10^k where gcd(10, m) = 1 and k >= 0 and m > 0. 0
1, 3, 7, 9, 10, 11, 13, 17, 19, 21, 23, 27, 29, 30, 31, 33, 37, 39, 41, 43, 47, 49, 51, 53, 57, 59, 61, 63, 67, 69, 70, 71, 73, 77, 79, 81, 83, 87, 89, 90, 91, 93, 97, 99, 100, 101, 103, 107, 109, 110, 111, 113, 117, 119, 121, 123, 127, 129, 130, 131, 133 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Also natural numbers x such that fractions of the form x/10^r, after reduction to lowest terms, still have a power of ten in the denominator.
Superset of A045572, and every member of a(n) arises from a member of A045572 by appending zero or more '0' digits at the right.
LINKS
FORMULA
a(n) = 9n/4 + O(log n). - Charles R Greathouse IV, May 14 2014
EXAMPLE
19/10 is already fully reduced, and has a power of 10 in its denominator, so 19 is in the sequence;
30/100 reduces to 3/10, which has a power of 10 in its denominator, so 30 is in the sequence;
12/10, 15/100, and 20/100 reduce to 6/5, 3/20, and 1/5, respectively (none of which has a power of 10 in its denominator), so 12, 15, and 20 are not in the sequence.
PROG
(PARI) for(i=1, 400, if(valuation(i, 2)==valuation(i, 5), print1(i, ", ")))
(PARI) is(n)=gcd(n/10^valuation(n, 10), 10)==1 \\ Charles R Greathouse IV, May 14 2014
CROSSREFS
Cf. A064615 (uses 6 instead of 10).
Sequence in context: A326911 A037372 A194407 * A097475 A177732 A081339
KEYWORD
nonn,easy
AUTHOR
Jeppe Stig Nielsen, Apr 26 2014
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)