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!)
A106058 4th diagonal of triangle in A059317. 2
0, 0, 0, 2, 9, 22, 42, 70, 107, 154, 212, 282, 365, 462, 574, 702, 847, 1010, 1192, 1394, 1617, 1862, 2130, 2422, 2739, 3082, 3452, 3850, 4277, 4734, 5222, 5742, 6295, 6882, 7504, 8162, 8857, 9590, 10362, 11174, 12027, 12922, 13860, 14842, 15869, 16942, 18062 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
W. F. Klostermeyer, M. E. Mays, L. Soltes and G. Trapp, A Pascal rhombus, Fibonacci Quarterly, 35 (1997), 318-328.
FORMULA
For n>1, a(n) = (1/6)*(n-2)*(n^2 + 8n - 21).
From R. J. Mathar, Feb 06 2010: (Start)
a(n) = 4*a(n-1) -6*a(n-2) +4*a(n-3) -a(n-4) for n >= 6.
G.f.: -x^3*(-2-x+2*x^2)/(x-1)^4. (End)
MATHEMATICA
Join[{0, 0}, LinearRecurrence[{4, -6, 4, -1}, {0, 2, 9, 22}, 45]] (* Georg Fischer, Dec 10 2019 *)
PROG
(PARI) a(n)=if(n>2, (n-2)*(n^2 + 8*n - 21)/6, 0) \\ Charles R Greathouse IV, Oct 18 2022
CROSSREFS
Sequence in context: A056105 A323891 A212069 * A086718 A023625 A166754
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, May 28 2005
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 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)