The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A027976 n-th diagonal sum of right justified array T given by A027960. 2
1, 1, 4, 6, 10, 18, 29, 47, 78, 126, 204, 332, 537, 869, 1408, 2278, 3686, 5966, 9653, 15619, 25274, 40894, 66168, 107064, 173233, 280297, 453532, 733830, 1187362, 1921194, 3108557, 5029751, 8138310, 13168062, 21306372, 34474436, 55780809, 90255245, 146036056, 236291302, 382327358 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: (1 + 2*x^2)/((1-x^3)*(1-x-x^2)).
From G. C. Greubel, Sep 26 2019: (Start)
a(n) = (Fibonacci(n) + 4*Fibonacci(n+1) - A102283(n) - 2)/2.
a(n) = (Fibonacci(n+1) + Lucas(n+2) - 2*sin(2*Pi*n/3)/sqrt(3) - 2)/2. (End)
MAPLE
seq(coeff(series((1 + 2*x^2)/((1-x^3)*(1-x-x^2)), x, n+1), x, n), n = 0..40); # G. C. Greubel, Sep 26 2019
MATHEMATICA
LinearRecurrence[{1, 1, 1, -1, -1}, {1, 1, 4, 6, 10}, 41] (* or *) Table[ (Fibonacci[n+1] +LucasL[n+2] -2*Sin[2*Pi*n/3]/Sqrt[3] -2)/2, {n, 0, 40}] (* G. C. Greubel, Sep 26 2019 *)
PROG
(PARI) my(x='x+O('x^40)); Vec((1 + 2*x^2)/((1-x^3)*(1-x-x^2))) \\ G. C. Greubel, Sep 26 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( (1 + 2*x^2)/((1-x^3)*(1-x-x^2)) )); // G. C. Greubel, Sep 26 2019
(Sage)
def A027976_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P((1 + 2*x^2)/((1-x^3)*(1-x-x^2))).list()
A027976_list(40) # G. C. Greubel, Sep 26 2019
(GAP) a:=[1, 1, 4, 6, 10];; for n in [6..40] do a[n]:=a[n-1]+a[n-2]+a[n-3]-a[n-4]-a[n-5]; od; a; # G. C. Greubel, Sep 26 2019
CROSSREFS
Sequence in context: A165186 A310590 A108232 * A108900 A076995 A096817
KEYWORD
nonn
AUTHOR
EXTENSIONS
Terms a(28) onward added by G. C. Greubel, Sep 26 2019
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 June 7 12:11 EDT 2024. Contains 373173 sequences. (Running on oeis4.)