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!)
A277736 Positions of 0's in A277735. 4
1, 4, 5, 6, 8, 10, 13, 14, 17, 18, 21, 22, 23, 25, 28, 29, 30, 32, 35, 36, 37, 39, 41, 44, 45, 48, 49, 50, 52, 54, 57, 58, 61, 62, 63, 65, 67, 70, 71, 74, 75, 78, 79, 80, 82, 85, 86, 87, 89, 91, 94, 95, 98, 99, 102, 103, 104, 106, 109, 110, 111, 113, 115, 118, 119, 122, 123, 126, 127, 128, 130, 133, 134 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
{A277736, A277737, A277738} forms a three-way partition of the positive integers, similar to {A003144, A003145, A003146}.
LINKS
MAPLE
with(ListTools);
T:=proc(S) Flatten(subs( {0=[0, 1], 1=[2, 0], 2=[0]}, S)); end;
S:=[0];
for n from 1 to 14 do S:=T(S); od:
S; # A277735
p0:=[]: p1:=[]: p2:=[]:
for i from 1 to nops(S) do
j:=S[i];
if j=0 then p0:=[op(p0), i];
elif j=1 then p1:=[op(p1), i];
else p2:=[op(p2), i]; fi: od:
p0; # A277736
p1; # A277737
p2: # A277738
CROSSREFS
Cf. also A003144, A003145, A003146.
Sequence in context: A144043 A139446 A274918 * A287358 A035065 A209722
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 07 2016
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 July 14 20:49 EDT 2024. Contains 374323 sequences. (Running on oeis4.)