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

A190553
Positions of 3 in A190549.
6
2, 4, 9, 14, 19, 21, 26, 31, 33, 38, 43, 48, 50, 55, 60, 62, 67, 72, 74, 77, 79, 84, 89, 91, 96, 101, 103, 108, 113, 118, 120, 125, 130, 132, 137, 142, 144, 147, 149, 154, 159, 161, 166, 171, 173, 178, 183, 188, 190, 195, 200, 202, 207, 212, 217, 219, 224, 229, 231, 236, 241, 243, 248, 253, 258, 260, 265, 270, 272, 277, 282, 287
OFFSET
1,1
COMMENTS
See A190549.
LINKS
MATHEMATICA
r = Sqrt[2]; b = 4; c = 1;
f[n_] := Floor[(b*n + c)*r] - b*Floor[n*r] - Floor[c*r];
t = Table[f[n], {n, 1, 200}] (* A190549 *)
Flatten[Position[t, 0]] (* A190550 *)
Flatten[Position[t, 1]] (* A190551 *)
Flatten[Position[t, 2]] (* A190552 *)
Flatten[Position[t, 3]] (* A190553 *)
Flatten[Position[t, 4]] (* A190554 *)
CROSSREFS
Cf. A190549.
Sequence in context: A077224 A059447 A234899 * A270532 A281407 A078671
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 12 2011
STATUS
approved