A062925 Numbers k that, when expressed in base 4 and then interpreted in base 9, give a multiple of k.
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
Examples
5 in base 4 is 11, which interpreted in base 9 is 10 = 2*5.
Links
- Georg Fischer, Table of n, a(n) for n = 1..53 [First 45 terms from Harry J. Smith]
Crossrefs
Programs
-
Mathematica
Join[{0},Select[Range[1540000],Divisible[FromDigits[IntegerDigits[#,4],9],#]&]] (* Harvey P. Dale, Sep 03 2021 *)
-
PARI
select(n->n==0 || fromdigits(digits(n,4), 9) % n == 0, [0..100000]) \\ Andrew Howroyd, Jun 28 2018
Extensions
More terms from Naohiro Nomoto, Aug 06 2001
Offset changed to 1 by Georg Fischer, Mar 13 2023