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!)
A032543 Numbers that, when expressed in base 5 and then interpreted in base 10, yield a multiple of the original number. 3
0, 1, 2, 3, 4, 5, 10, 15, 20, 25, 50, 75, 100, 125, 160, 224, 237, 250, 320, 330, 375, 490, 500, 625, 800, 1000, 1120, 1185, 1250, 1600, 1650, 1875, 2450, 2500, 3125, 3800, 4000, 4704, 5000, 5600, 5925, 6250, 7600, 8000, 8250, 9375, 10000, 12250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
From Robert Israel, Apr 10 2016: (Start)
n for which n divides A007091(n).
If n is in the sequence, then so is 5*n. (End)
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..577 (terms < 5*10^12, first 147 terms from Robert Israel)
EXAMPLE
25 in base 5 is 100, which interpreted in base 10 is 100 = 4 * 25.
224 in base 5 is 1344, which interpreted in base 10 is 1344 = 6 * 224.
MAPLE
filter:= proc(n) local L, i;
L:= convert(n, base, 5);
add(L[i]*10^(i-1), i=1..nops(L)) mod n = 0
end proc:
0, op(select(filter, [$1..10^5])); # Robert Israel, Apr 10 2016
MATHEMATICA
Select[Range[0, 13000], Divisible[FromDigits[IntegerDigits[#, 5]], #] &] (* Harvey P. Dale, Feb 01 2011 *)
CROSSREFS
Sequence in context: A364902 A032940 A064419 * A140730 A273732 A282032
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Apr 15 1998
EXTENSIONS
Example and better description from Erich Friedman, Jul 21 2001
Edited by Erich Friedman, Feb 09 2002
Offset changed and 0 inserted by Robert Israel, Apr 11 2016
Name edited by Jon E. Schoenfield, Oct 25 2019
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 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)