The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A370975 a(n) = (A370952(n+1) - A370952(n)) /(2*n+1). 3
1, 1, -1, 1, 1, 1, -2, 2, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, 1, 1, -1, 1, -1, 1, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -1, -1, 2, -2, 2, 1, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,7
LINKS
PROG
(Python)
from itertools import count, islice
def A370975_gen(): # generator of terms
a, aset = 1, {0, 1}
for p in count(3, 2):
for b in count(a%p, p):
if b not in aset:
aset.add(b)
yield (b-a)//p
a = b
break
A370095_list = list(islice(A370975_gen(), 20)) # Chai Wah Wu, Apr 17 2024
CROSSREFS
Sequence in context: A141044 A064284 A371807 * A030409 A030407 A287056
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Apr 17 2024
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 13 02:15 EDT 2024. Contains 372497 sequences. (Running on oeis4.)