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!)
A060926 Row sums of triangle A060923 (even part of bisection of Lucas triangle). 4
1, 5, 29, 149, 765, 3941, 20301, 104565, 538589, 2774149, 14289005, 73599381, 379093501, 1952623525, 10057515149, 51803949749, 266830242845, 1374381274821, 7079122173101, 36462931836885 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{j=0..n} A060923(n, j).
a(n) = A060928(n) + 4*A060928(n-2), n >= 2, otherwise A060928(n).
G.f.: (1+4*x^2)/(1-5*x-4*x^3).
MATHEMATICA
LinearRecurrence[{5, 0, 4}, {1, 5, 29}, 31] (* G. C. Greubel, Apr 09 2021 *)
PROG
(Magma) I:=[1, 5, 29]; [n le 3 select I[n] else 5*Self(n-1) + 4*Self(n-3): n in [1..30]]; // G. C. Greubel, Apr 09 2021
(Sage)
def A060926_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( (1+4*x^2)/(1-5*x-4*x^3) ).list()
A060926_list(30) # G. C. Greubel, Apr 09 2021
CROSSREFS
Cf. A060927 (Row sums of A060924).
Sequence in context: A272921 A198764 A065541 * A320089 A239715 A260752
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Apr 20 2001
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)