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!)
A262725 The unique function f with f(1)=1 and f(jD!+k)=(-1)^j f(k) for all D, j=1..D, and k=1..D!. 0
1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1, 1, -1, -1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1
COMMENTS
sup_n |sum_{j=1}^n f(jd)| is finite (but not bounded) for all d, thus giving a counterexample to a strong form of the Erdos discrepancy conjecture [see Remark 1.13 in Tao link].
LINKS
Terence Tao, The Erdős discrepancy problem, arXiv:1509.05363 [math.CO], 2015.
PROG
(Sage)
A=[1, 1]
for D in [1..4]:
j=1
while j<=D:
k=1
while k<=factorial(D):
A.append((-1)^j*A[k])
k+=1
j+=1
A[1:73] # Tom Edgar, Sep 29 2015
CROSSREFS
Cf. A237695.
Sequence in context: A186039 A332433 A057077 * A070748 A154990 A209615
KEYWORD
easy,sign
AUTHOR
Terence Tao, Sep 28 2015
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 10 12:30 EDT 2024. Contains 372387 sequences. (Running on oeis4.)