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!)
A188532 Numbers which contain only the digit 5 in their base-6 representation, with at most one exception. If the exception is the most-significant digit, it must be the digit 1, 2, 3, or 4, otherwise the exception must be the digit 4. 4
1, 2, 3, 4, 5, 11, 17, 23, 29, 34, 35, 71, 107, 143, 179, 209, 214, 215, 431, 647, 863, 1079, 1259, 1289, 1294, 1295, 2591, 3887, 5183, 6479, 7559, 7739, 7769, 7774, 7775, 15551, 23327, 31103, 38879, 45359, 46439, 46619, 46649, 46654, 46655, 93311, 139967 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The sequence lists the positive binomial coefficient predictors in base 6. For definition, see paper in link.
LINKS
V. Shevelev, Binomial Coefficient Predictors, Journal of Integer Sequences, Vol. 14 (2011), Article 11.2.8
MAPLE
a:= proc(n) option remember; local i, l, m, t;
m:= `if`(n=1, 0, a(n-1));
l:=NULL;
for t while m>0 do l:=l, irem(m, 6, 'm') od;
l:= array([l, 0]);
for i while l[i]=5 do od;
if l[i]<4 then l[i]:= l[i]+1
else l[i]:= 5;
if i>1 then l[i-1]:= 4 fi
fi;
add(l[i] *6^(i-1), i=1..t)
end:
seq(a(n), n=1..100); # Alois P. Heinz, Apr 03 2011
CROSSREFS
Sequence in context: A234142 A116068 A104420 * A181288 A255260 A333610
KEYWORD
nonn,base
AUTHOR
Vladimir Shevelev, Apr 03 2011
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 April 24 08:13 EDT 2024. Contains 371922 sequences. (Running on oeis4.)