login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A062925
Numbers k that, when expressed in base 4 and then interpreted in base 9, give a multiple of k.
11
0, 1, 2, 3, 5, 10, 15, 25, 75, 100, 125, 355, 435, 500, 1775, 2415, 3675, 5825, 9660, 14700, 17074, 20786, 22382, 23300, 27300, 79716, 83144, 87087, 97860, 103930, 125460, 172105, 331275, 332576, 348348, 415720, 1325100, 1330304, 1531980
OFFSET
1,3
LINKS
Georg Fischer, Table of n, a(n) for n = 1..53 [First 45 terms from Harry J. Smith]
EXAMPLE
5 in base 4 is 11, which interpreted in base 9 is 10 = 2*5.
MATHEMATICA
Join[{0}, Select[Range[1540000], Divisible[FromDigits[IntegerDigits[#, 4], 9], #]&]] (* Harvey P. Dale, Sep 03 2021 *)
PROG
(PARI) select(n->n==0 || fromdigits(digits(n, 4), 9) % n == 0, [0..100000]) \\ Andrew Howroyd, Jun 28 2018
KEYWORD
base,nonn
AUTHOR
Erich Friedman, Jul 21 2001
EXTENSIONS
More terms from Naohiro Nomoto, Aug 06 2001
Offset changed to 1 by Georg Fischer, Mar 13 2023
STATUS
approved