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!)
A118352 Semi-diagonal (one row below central terms) of pendular triangle A118350 and equal to the self-convolution of the central terms (A118351). 5
1, 2, 13, 96, 770, 6530, 57612, 523446, 4864795, 46032288, 441981816, 4295393886, 42172388820, 417668676206, 4167719552099, 41861139949200, 422890327921650, 4294027462637528, 43801007565527184, 448625344231794792 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MATHEMATICA
T[n_, k_]:= T[n, k]= If[k==0, 1, If[k==n, 0, T[n-1, k] -3*T[n-1, k-1] +3*T[n, k-1] +T[n+1, k-1] ]];
Table[T[n, n-2], {n, 2, 30}] (* G. C. Greubel, Feb 18 2021 *)
PROG
(PARI) {a(n)=polcoeff((serreverse(x*(1-3*x+sqrt((1-3*x)*(1-7*x)+x*O(x^n)))/2/(1-3*x))/x)^2, n)}
(Sage)
@CachedFunction
def T(n, k):
if (k<0 or n<k): return 0
elif (k==0): return 1
elif (k==n): return 0
else: return T(n-1, k) - 3*T(n-1, k-1) + 3*T(n, k-1) + T(n+1, k-1)
[T(n, n-2) for n in (2..30)] # G. C. Greubel, Feb 18 2021
CROSSREFS
Sequence in context: A282724 A104255 A369202 * A320360 A074614 A184019
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 26 2006
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 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)