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!)
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 (list; graph; refs; listen; history; text; internal format)
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
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 April 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)