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!)
A278347 If n is even, a(n) = a(n/2 -1) - a(n/2 +1), and if n is odd, a(n) = a((n-1)/2) - a((n+1)/2), with a(1) = a(2) = 1. 1
1, 1, 0, 1, 1, 0, -1, -1, 0, 1, 1, 2, 1, 1, 0, -1, -1, -2, -1, -1, 0, -1, -1, 0, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 0, -1, -1, 0, -1, -1, 0, 1, 1, 0, -1, -1, -2, -1, -1, 0, 1, 1, 0, -1, -1, 0, -1, -1, 0, 1, 1, 0, 1, 1, 0, -1, -1, 0, 1, 1, 2, 1, 1, 0, -1, -1, 0, 1, 1, 0, -1, -1, -2, -1, -1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 0, -1, -1, 0, -1, -1, -2, -1, -1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,12
COMMENTS
Not cyclic or periodic.
-3 < a(n) < 3, for all n < 10^8.
First occurrence of k beginning at -2: 18, 7, 3, 1, 12.
The distribution of a(n) in the first 10^8 terms: -2, 4166621; -1, 33333332; 0, 25000091; 1, 33333335 and 2, 4166621 or -2 1/24, -1 1/3, 0 1/4, 1 1/3 and 2 1/24.
LINKS
Tristan Cam and Robert G. Wilson v, Table of n, a(n) for n = 1..10000
FORMULA
a(1) = 1 and a(2) = 1. a(n) = a(n/2 -1) - a(n/2 +1) if n is even and a(n) = a((n-1)/2) - a((n+1)/2) if n is odd.
MATHEMATICA
a[n_] := a[n] = If[ OddQ[n], a[(n - 1)/2] - a[(n + 1)/2], a[n/2 - 1] - a[n/2 + 1]]; a[1] = a[2] = 1; Array[a, 105]
CROSSREFS
Cf. A277778.
Sequence in context: A075685 A037906 A319394 * A120936 A335294 A214438
KEYWORD
easy,sign
AUTHOR
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)