The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A211967 Triangle of decimal equivalents of binary numbers with no initial repeats, A211027. 3
1, 2, 4, 5, 8, 9, 11, 16, 17, 18, 19, 22, 23, 32, 33, 34, 35, 37, 38, 39, 44, 46, 47, 64, 65, 66, 67, 68, 69, 70, 71, 74, 75, 76, 77, 78, 79, 88, 89, 92, 93, 94, 95, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
Irregular triangle begins:
1;
2;
4, 5;
8, 9, 11;
16, 17, 18, 19, 22, 23;
32, 33, 34, 35, 37, 38, 39, 44, 46, 47;
MAPLE
s:= proc(n) s(n):= `if`(n=1, [[1]], map(x->
[[x[], 0], [x[], 1]][], s(n-1))) end:
T:= proc(n) map (x-> add(x[i]*2^(nops(x)-i), i=1..nops(x)), select
(proc(l) local i; for i to iquo(nops(l), 2) do if l[1..i]=
l[i+1..2*i] then return false fi od; true end, s(n)))[] end:
seq (T(n), n=1..8); # Alois P. Heinz, Dec 03 2012
CROSSREFS
Columns 1-2 give: A000079(n-1), A000051(n-1) for n>2. Row n has length A093371(n). Right border gives A083329(n-1).
Sequence in context: A326774 A334265 A334266 * A099628 A346111 A286805
KEYWORD
nonn,tabf,base
AUTHOR
Omar E. Pol, Nov 30 2012
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 May 15 22:47 EDT 2024. Contains 372549 sequences. (Running on oeis4.)