A074233 Numbers whose base-4 and base-5 representations are permutations of the same multiset of digits.
0, 1, 2, 3, 28, 137, 210, 692, 717, 933, 3138, 3213, 3416, 3467, 3538, 16068
Offset: 1
Examples
692 is represented as 22310 in base 4 and as 10232 in base 5. Each representation is a permutation of the multiset {0,1,2,2,3}.
Programs
-
PARI
isok(m) = vecsort(digits(m, 4)) == vecsort(digits(m, 5)); \\ Michel Marcus, Jan 24 2022
Extensions
First four terms inserted by David A. Corneth, Jan 24 2022
Comments