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!)
A190486 Positions of 2 in A190483. 24
2, 7, 12, 14, 19, 24, 31, 36, 41, 43, 48, 53, 60, 65, 70, 72, 77, 82, 84, 89, 94, 101, 106, 111, 113, 118, 123, 130, 135, 140, 142, 147, 152, 159, 164, 171, 176, 181, 183, 188, 193, 200, 205, 210, 212, 217, 222, 229, 234, 239, 241, 246, 251, 253, 258, 263, 270, 275, 280, 282, 287, 292, 299, 304, 309, 311, 316 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A190483.
LINKS
MATHEMATICA
r = Sqrt[2]; b = 2; c = 1;
f[n_] := Floor[(b*n + c)*r] - b*Floor[n*r] - Floor[c*r];
t = Table[f[n], {n, 1, 200}] (* A190483 *)
Flatten[Position[t, 0]] (* A190484 *)
Flatten[Position[t, 1]] (* A190485 *)
Flatten[Position[t, 2]] (* A190486 *)
PROG
(Python)
from sympy import sqrt, floor
r=sqrt(2)
def a190483(n): return floor((2*n + 1)*r) - 2*floor(n*r) - floor(r)
print([n for n in range(1, 501) if a190483(n)==2]) # Indranil Ghosh, Jul 02 2017
CROSSREFS
Sequence in context: A326231 A190548 A187971 * A266109 A006143 A190453
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 11 2011
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 May 11 05:30 EDT 2024. Contains 372388 sequences. (Running on oeis4.)