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!)
A055453 a(n) = T(n,n-3), array T as in A055450. 6
1, 4, 9, 14, 56, 230, 965, 4120, 17846, 78244, 346605, 1549030, 6976140, 31628838, 144250962, 661352970, 3046379300, 14091723450, 65432979080, 304880016970, 1425043805000, 6680031216850, 31396257423925, 147923222356036 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,2
LINKS
FORMULA
a(n) = 14*Hypergeometric2F1([6-n, 9/2], [6], -4), for n >= 6 and a(n) = (n-2)^2 for 3 <= n <= 5. - G. C. Greubel, Jan 30 2024
MATHEMATICA
Table[If[n<6, (n-2)^2, 14*Hypergeometric2F1[6-n, 9/2, 6, -4]], {n, 3, 40}] (* G. C. Greubel, Jan 30 2024 *)
PROG
(Magma) [n le 6 select (n-2)^2 else Round(14*HypergeometricSeries2F1(6-n, 9/2, 6, -4)): n in [3..40]]; // G. C. Greubel, Jan 30 2024
(SageMath)
def A055453(n): return (n-2)^2 if n<6 else 14*hypergeometric([6-n, 9/2], [6], -4).simplify()
[A055453(n) for n in range(3, 41)] # G. C. Greubel, Jan 30 2024
CROSSREFS
Sequence in context: A095169 A345407 A105703 * A247013 A122499 A350419
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 18 2000
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 24 15:18 EDT 2024. Contains 371960 sequences. (Running on oeis4.)