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”).

A044126
Numbers n such that string 4,0 occurs in the base 6 representation of n but not of n-1.
1
24, 60, 96, 132, 144, 168, 204, 240, 276, 312, 348, 360, 384, 420, 456, 492, 528, 564, 576, 600, 636, 672, 708, 744, 780, 792, 816, 852, 864, 924, 960, 996, 1008, 1032, 1068, 1104, 1140, 1176, 1212, 1224, 1248, 1284, 1320, 1356
OFFSET
1,1
COMMENTS
All terms == 4*6^k (mod 6^(k+1)) for some k >= 1. However, not all numbers of this form are in the sequence, e.g., 888. - Robert Israel, Jun 13 2018
LINKS
MAPLE
N:= 10^4: # for all terms <= N
filter:= proc(n) local L;
L:= convert(n-1, base, 6);
select(t -> L[t]=0 and L[t+1]=4, [$1..nops(L)-1])=[]
end proc:
S:= convert(`union`(seq({seq(i, i=4*6^k .. N, 6^(k+1))}, k=1..floor(log[6](N/4)))), list):
sort(select(filter, S)); # Robert Israel, Jun 13 2018
MATHEMATICA
SequencePosition[Table[If[SequenceCount[IntegerDigits[n, 6], {4, 0}]>0, 1, 0], {n, 1500}], {0, 1}][[All, 2]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jul 17 2020 *)
CROSSREFS
Sequence in context: A255968 A211325 A290303 * A044507 A101860 A163636
KEYWORD
nonn,base
STATUS
approved