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!)
A145934 Expansion of 1/(1-x*(1-6*x)). 10
1, 1, -5, -11, 19, 85, -29, -539, -365, 2869, 5059, -12155, -42509, 30421, 285475, 102949, -1609901, -2227595, 7431811, 20797381, -23793485, -148577771, -5816861, 885649765, 920550931, -4393347659, -9916653245, 16443432709 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Row sums of Riordan array (1, x(1-6x)).
For positive n, a(n) equals the determinant of the n X n tridiagonal matrix with 1's along the main diagonal, 3's along the superdiagonal, and 2's along the subdiagonal (see Mathematica code below). - John M. Campbell, Jul 08 2011
LINKS
Taras Goy and Mark Shattuck, Determinants of Toeplitz-Hessenberg Matrices with Generalized Leonardo Number Entries, Ann. Math. Silesianae (2023). See p. 17.
FORMULA
a(n) = Sum_{k=0..n} A109466(n,k)*6^(n-k).
a(n) = a(n-1) - 6*a(n-2); a(0)=1, a(1)=1. - Philippe Deléham, Oct 25 2008
MATHEMATICA
Table[Det[Array[KroneckerDelta[#1, #2] + KroneckerDelta[#1, #2 + 1]*2 + KroneckerDelta[#1, #2 - 1]*3 &, {n, n}]], {n, 1, 40}] (* John M. Campbell, Jul 08 2011 *)
LinearRecurrence[{1, -6}, {1, 1}, 30] (* G. C. Greubel, Jan 14 2018 *)
PROG
(Sage) [lucas_number1(n, 1, 6) for n in range(1, 29)] # Zerinvary Lajos, Apr 22 2009
(PARI) Vec(1/(1-x*(1-6*x))+O(x^99)) \\ Charles R Greathouse IV, Sep 23 2012
(Magma) I:=[1, 1]; [n le 2 select I[n] else Self(n-1) - 6*Self(n-2): n in [1..30]]; // G. C. Greubel, Jan 14 2018
CROSSREFS
Sequence in context: A370682 A297365 A128927 * A033913 A088124 A344549
KEYWORD
sign,easy
AUTHOR
Philippe Deléham, Oct 25 2008
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 5 20:57 EDT 2024. Contains 372287 sequences. (Running on oeis4.)