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!)
A074709 Base 4 expansion of 1/n has equal percentage of each digit 0,1,2,3. 3
34, 194, 578, 866, 1889, 2017, 2434, 2722, 2897, 4993, 7393, 7394, 7841, 9826, 10562, 10882, 11777, 11969, 15074, 16993, 17282, 18818, 20129, 20417, 20849, 23041, 24322, 35426, 40193, 40289 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
filter:= proc(n) local m, L, i;
if n mod 4 = 0 then return false fi;
if n::odd then
m:= numtheory:-order(4, n);
if m mod 4 <> 0 then return false fi;
L:= convert(4^m+(4^m-1)/n, base, 4)[1..m];
else
m:= numtheory:-order(4, n/2);
if m mod 4 <> 0 then return false fi;
L:= convert(4^m + 4*(4^m-1)/n, base, 4)[1..m];
fi;
nops({seq(numboccur(i, L), i=0..3)}) = 1
end proc:
select(filter, [$3..10^5]); # Robert Israel, Dec 28 2020
CROSSREFS
Sequence in context: A032771 A269237 A200256 * A074900 A302227 A058581
KEYWORD
nonn,base
AUTHOR
Donald S. McDonald, Sep 04 2002
EXTENSIONS
Corrected and extended by Robert G. Wilson v, Sep 06 2002
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 July 12 05:17 EDT 2024. Contains 374237 sequences. (Running on oeis4.)