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!)
A060927 Row sums of triangle A060924 (odd part of bisection of Lucas triangle). 4
3, 13, 65, 337, 1737, 8945, 46073, 237313, 1222345, 6296017, 32429337, 167036065, 860364393, 4431539313, 22825840825, 117570661697, 605579465737, 3119200691985, 16066286106713, 82753748396513 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = Sum_{j=0..n} A060924(n, j).
G.f.: (3-2*x)/(1-5*x-4*x^3).
a(n) = 3*A060928(n) - 2*A060928(n-1), n >= 1; a(0)=3.
MATHEMATICA
CoefficientList[Series[(3-2*x)/(1-5*x-4*x^3), {x, 0, 30}], x] (* G. C. Greubel, Apr 07 2021 *)
PROG
(Magma)
R<x>:=PowerSeriesRing(Integers(), 30);
Coefficients(R!( (3-2*x)/(1-5*x-4*x^3) )); // G. C. Greubel, Apr 07 2021
(Sage)
def A060927_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (3-2*x)/(1-5*x-4*x^3) ).list()
A060927_list(30) # G. C. Greubel, Apr 07 2021
CROSSREFS
Cf. A060926 (row sums of A060923 companion triangle).
Sequence in context: A369796 A356485 A126149 * A074537 A284714 A200475
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 March 19 01:57 EDT 2024. Contains 370952 sequences. (Running on oeis4.)