login
Negative values along the main diagonal of the array defined by A020806 and its differences.
5

%I #11 Nov 06 2017 06:22:57

%S -1,2,9,13,31,57,119,233,471,937,1879,3753,7511,15017,30039,60073,

%T 120151,240297,480599,961193,1922391,3844777,7689559,15379113,

%U 30758231,61516457,123032919,246065833,492131671,984263337,1968526679,3937053353,7874106711

%N Negative values along the main diagonal of the array defined by A020806 and its differences.

%H Colin Barker, <a href="/A144472/b144472.txt">Table of n, a(n) for n = 1..1000</a>

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (1,2).

%F a(n+1) - 2*a(n) = (-1)^n*A010716(n), n>1, period 2.

%F G.f.: x*(1-3*x-9*x^2) / ((1+x)*(2*x-1)). - _R. J. Mathar_, Oct 24 2008

%F a(n) = 11*2^(n-2)/3 - 5*(-1)^n/3, n>1. - _R. J. Mathar_, Oct 24 2008

%F From _Colin Barker_, Nov 06 2017: (Start)

%F a(n) = (11*2^n - 20) / 12 for n>1 and even.

%F a(n) = (11*2^n + 20) / 12 for n>1 and odd.

%F a(n) = a(n-1) + 2*a(n-2) for n>3.

%F (End)

%e A020806 and its repeated differences in the next rows start as follows:

%e ..1,..4,..2,..8,..5,..7,..1,..4,..2,..8, <- A020806

%e ..3,.-2,..6,.-3,..2,.-6,..3,.-2,..6,.-3, <- A131969

%e .-5,..8,.-9,..5,.-8,..9,.-5,..8,.-9,..5,

%e .13,-17,.14,-13,.17,-14,.13,-17,.14,-13,

%e -30,.31,-27,.30,-31,.27,-30,.31,-27,.30,

%e .61,-58,.57,-61,.58,-57,.61,-58,.57,-61,

%e The diagonal is 1,-2,-9,-13,-31,... which yields a(n) after signs are flipped.

%t Join[{-1}, LinearRecurrence[{1, 2}, {2, 9}, 40]] (* _Jean-François Alcover_, Nov 06 2017 *)

%o (PARI) Vec(-x*(1 - 3*x - 9*x^2) / ((1 + x)*(1 - 2*x)) + O(x^50)) \\ _Colin Barker_, Nov 06 2017

%K sign,easy

%O 1,2

%A _Paul Curtz_, Oct 10 2008, Oct 14 2008

%E Edited and extended by _R. J. Mathar_, Oct 24 2008