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!)
A045252 Numbers whose base-5 representation contains exactly one 1 and one 4. 1
9, 21, 29, 39, 44, 45, 47, 48, 59, 71, 84, 96, 101, 105, 107, 108, 111, 116, 129, 139, 144, 145, 147, 148, 179, 189, 194, 195, 197, 198, 204, 214, 219, 220, 222, 223, 225, 227, 228, 235, 237, 238, 240, 242, 243, 259, 271, 279, 289 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
d:= 4: # for all terms with up to d base-5 digits.
Res:= NULL;
for m from 0 to 3^(d-2)-1 do
L:= subs(1=3, convert(3^(d-2)+m, base, 3));
for i from 0 to d-2 do
for j from i+1 to d-1 do
xpos:= subs(i=NULL, j=NULL, [$0..d-1]);
x:= add(L[i]*5^xpos[i], i=1..d-2);
Res:= Res, x + 5^i+4*5^j, x+4*5^i+5^j
od od od:
sort([Res]); # Robert Israel, Jan 19 2020
MATHEMATICA
Select[Range[300], DigitCount[#, 5, 1]==DigitCount[#, 5, 4]==1&] (* Harvey P. Dale, May 04 2021 *)
PROG
(Magma) [k:k in [1..300]| Multiplicity(Intseq(k, 5), 1) eq 1 and Multiplicity(Intseq(k, 5), 4) eq 1]; // Marius A. Burtea, Jan 20 2020
CROSSREFS
Cf. A007091.
Sequence in context: A339728 A267216 A039289 * A139538 A173460 A110701
KEYWORD
nonn,base
AUTHOR
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 March 29 02:12 EDT 2024. Contains 371264 sequences. (Running on oeis4.)