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

A190545
Positions of 0 in A190544.
6
3, 5, 10, 15, 17, 22, 27, 29, 34, 39, 44, 46, 51, 56, 58, 63, 68, 73, 75, 80, 85, 87, 92, 97, 99, 102, 104, 109, 114, 116, 121, 126, 128, 133, 138, 143, 145, 150, 155, 157, 162, 167, 169, 172, 174, 179, 184, 186, 191, 196, 198, 203, 208, 213, 215, 220, 225, 227, 232, 237, 242, 244, 249, 254, 256, 261, 266, 268, 273, 278, 283, 285
OFFSET
1,1
COMMENTS
See A190544.
LINKS
MATHEMATICA
r = Sqrt[2]; b = 4; c = 0;
f[n_] := Floor[(b*n + c)*r] - b*Floor[n*r] - Floor[c*r];
t = Table[f[n], {n, 1, 200}] (* A190544 *)
Flatten[Position[t, 0]] (* A190545 *)
Flatten[Position[t, 1]] (* A190546 *)
Flatten[Position[t, 2]] (* A190547 *)
Flatten[Position[t, 3]] (* A190548 *)
CROSSREFS
Cf. A190544.
Sequence in context: A089483 A323858 A190484 * A190557 A023602 A024452
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 12 2011
STATUS
approved