login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A043900
Numbers k such that 0 and 5 occur juxtaposed in the base-6 representation of k but not of k+1.
0
30, 41, 66, 77, 102, 113, 138, 149, 174, 185, 210, 221, 251, 257, 282, 293, 318, 329, 354, 365, 390, 401, 426, 437, 467, 473, 498, 509, 534, 545, 570, 581, 606, 617, 642, 653, 683, 689, 714, 725, 750, 761, 786, 797, 822, 833
OFFSET
1,1
EXAMPLE
30(10) = 50(6) but 31(10) = 51(6), so 30 is in the sequence.
MATHEMATICA
Transpose[SequencePosition[Table[If[SequenceCount[IntegerDigits[n, 6], {0, 5}]>0||SequenceCount[IntegerDigits[n, 6], {5, 0}]>0, 1, 0], {n, 1000}], {1, 0}]][[1]] (* The program uses the SequencePosition and SequenceCount functions from Mathematica version 10 *) (* Harvey P. Dale, Jan 14 2016 *)
PROG
(Sage)
@cached_function
def str_base6(x):
return ''.join(str(y) for y in x.digits(base=6))
[x for x in [1..2000] if '50' in str_base6(x) or '05' in str_base6(x) and not('50' in str_base6(x + 1) or '05' in str_base6(x + 1))]
# Tom Edgar, May 13 2014
CROSSREFS
Cf. A007092.
Sequence in context: A225049 A043120 A039297 * A103098 A110849 A074696
KEYWORD
nonn,base
AUTHOR
Clark Kimberling, Dec 11 1999
STATUS
approved