cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A277778 If n is even, a(n) = 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.

This page as a plain text file.
%I A277778 #38 Nov 11 2016 03:31:40
%S A277778 1,1,0,1,1,1,-1,0,0,1,0,1,2,1,-1,-1,0,0,-1,0,1,1,-1,0,-1,1,1,2,2,1,0,
%T A277778 -1,-1,-1,0,0,1,0,-1,-1,-1,0,0,1,2,1,-1,-1,1,0,-2,-1,0,1,-1,1,0,2,1,2,
%U A277778 1,1,1,0,0,-1,0,-1,-1,-1,0,0,-1,0,1,1,1,0,0
%N A277778 If n is even, a(n) = 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.
%C A277778 This sequence grows very slowly, in both positive and negative directions. The first 3 in the list is a(221), the first 12 is a(122333), and the first -13 is a(980851).
%C A277778 First occurrences: a(1) = 1, a(3) = 0, a(7) = -1, a(13) = 2, a(51) = -2, a(221) = 3, a(477) = 4, a(845) = -3, a(1907) = -4, a(3549) = 5, a(7389) = 6, a(7645) = 7, a(13533) = -5, a(27101) = -6, a(30579) = -7, a(56797) = 8, a(61157) = 9, a(117981) = 10, a(122333) = 12, a(216541) = -9, a(216805) = -8, a(236509) = 11, a(245213) = 13, a(433629) = -11, a(471923) = -10, a(489331) = -12, a(978533) = 14, a(978661) = 15, a(980851) = -13, a(1818077) = 16, a(1887709) = 17, a(1957341) = 20, a(3464669) = -15, a(3469029) = -14, a(3755485) = -16, a(3775453) = 18, a(3914701) = 19, a(3914717) = 21, a(3915229) = 22, a(3923421) = 23, a(6938077) = -19, a(7511517) = -17, a(7773661) = -18, a(7829363) = -20, a(15658725) = 25, a(15658867) = -21, a(15660915) = -22, a(15693683) = -23, a(28949981) = 24, a(29089245) = 28, a(29220317) = 27, a(30199005) = 26, a(30203357) = 29, a(31313117) = 30, a(31317469) = 33. - _Charles R Greathouse IV_, Oct 30 2016
%C A277778 From _Robert Israel_, Nov 10 2016: (Start)
%C A277778 a(2^k-2) = 1.
%C A277778 a(2^k-1) = A010892(k).
%C A277778 a(2^k) = A010892(k-1).
%C A277778 a(13*(16^k-1)/15) = A000045(k+2) for k >= 1.
%C A277778 Using this, there is c>0 such that a(n) > c n^d for infinitely many n, where d = log_16((1+sqrt(5))/2) = 0.1735604784...
%C A277778 (End)
%H A277778 Robert Israel, <a href="/A277778/b277778.txt">Table of n, a(n) for n = 1..10000</a>
%H A277778 Robert G. Wilson v, <a href="/A277778/a277778.txt"> First occurrence of k.</a>
%F A277778 G.f. satisfies A(x) = (x^2 + x - 1/x) * A(x^2) + 2*x + x^2. - _Andrey Zabolotskiy_, Oct 30 2016
%F A277778 |a(n)| << n^0.71. - _Charles R Greathouse IV_, Nov 01 2016
%e A277778 The first two terms are a(1) = a(2) = 1. To get the next two terms, subtract the second from the first to get a(3) = a(1) - a(2) = 0 and copy the first term as a(4) = a(1) = 1.
%e A277778 To find a(5) and a(6), start over using a(2) and a(3); then for a(7) and a(8), use a(3) and a(4); and so on.
%p A277778 N:= 200: # to get a(1) .. a(N)
%p A277778 A[1]:= 1: A[2]:= 1:
%p A277778 for j from 1 to (N-1)/2 do
%p A277778   A[2*j+1]:= A[j] - A[j+1];
%p A277778   A[2*j+2]:= A[j];
%p A277778 od:
%p A277778 seq(A[i],i=1..N); # _Robert Israel_, Nov 10 2016
%t A277778 a[n_] := a[n] = If[ OddQ[n], a[(n - 1)/2] - a[(n + 1)/2], a[n/2 - 1]]; a[1] = a[2] = 1; Array[a, 100] (* _Robert G. Wilson v_, Nov 11 2016 *)
%o A277778 (PARI) a(n)=if(n<7, return(n!=3)); if(n%2, a(n\2) - a(n\2+1), a(n/2-1)) \\ _Charles R Greathouse IV_, Oct 30 2016
%Y A277778 Cf. A000045, A005590, A010892, A190610.
%K A277778 sign
%O A277778 1,13
%A A277778 _Tristan Cam_, Oct 30 2016