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

A190206
Positions of 1 in A190204; complement of A190205.
3
2, 4, 6, 7, 11, 12, 13, 14, 17, 19, 20, 21, 22, 24, 26, 28, 31, 33, 34, 35, 39, 40, 41, 42, 44, 46, 48, 51, 53, 55, 56, 60, 61, 62, 63, 66, 68, 70, 71, 73, 75, 77, 80, 82, 83, 84, 88, 90, 91, 93, 95, 97, 100, 102, 104, 105, 109, 110, 111, 112, 115, 117, 119, 120, 122, 124, 126, 129, 131, 132, 133, 137, 139, 140, 142, 144, 146, 149, 151
OFFSET
1,1
LINKS
MATHEMATICA
u = 6^(1/2); v = 1/u;
f[n_] := Floor[n*u + n*v] - Floor[n*u] - Floor[n*v]
t = Table[f[n], {n, 1, 120}] (* A190204 *)
Flatten[Position[t, 0]] (* A190205 *)
Flatten[Position[t, 1]] (* A190206 *)
CROSSREFS
Sequence in context: A374432 A179003 A318785 * A189287 A189128 A070119
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 05 2011
STATUS
approved