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

A190548
Positions of 3 in A190544.
6
2, 7, 12, 14, 19, 24, 26, 31, 36, 41, 43, 48, 53, 55, 60, 65, 67, 70, 72, 77, 82, 84, 89, 94, 96, 101, 106, 111, 113, 118, 123, 125, 130, 135, 140, 142, 147, 152, 154, 159, 164, 166, 171, 176, 181, 183, 188, 193, 195, 200, 205, 210, 212, 217, 222, 224, 229, 234, 236, 239, 241, 246, 251, 253, 258, 263, 265, 270, 275, 280, 282, 287
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: A049409 A287580 A326231 * A187971 A190486 A266109
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 12 2011
STATUS
approved