[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A055455
a(n) = A055450(n, n-5).
7
1, 6, 20, 48, 90, 132, 561, 2420, 10571, 46672, 207963, 934064, 4224685, 19225588, 87969426, 404479884, 1867924322, 8660317820, 40295911480, 188105782260, 880716750140, 4134823623820, 19461238795225, 91810738725036, 434062054130187, 2056265327125528
OFFSET
5,2
LINKS
FORMULA
a(n) = A055450(n, n-5), n >= 5.
a(n) = 132*Hypergeometric2F1([10-n, 13/2], [8], -4), for n >= 10. - G. C. Greubel, Jan 30 2024
MATHEMATICA
Join[{1, 6, 20, 48, 90}, Table[132*Hypergeometric2F1[10-n, 13/2, 8, -4], {n, 10, 40}]] (* G. C. Greubel, Jan 30 2024 *)
PROG
(Magma) [1, 6, 20, 48, 90] cat [Floor(132*HypergeometricSeries2F1(10-n, 13/2, 8, -4)): n in [10..40]]; // G. C. Greubel, Jan 30 2024
(SageMath)
def A055455(n): return (1, 6, 20, 48, 90)[n-5] if n<10 else 132*hypergeometric([10-n, 13/2], [8], -4).simplify()
[A055455(n) for n in range(5, 41)] # G. C. Greubel, Jan 30 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 18 2000
EXTENSIONS
a(13) corrected and more terms from Sean A. Irvine, Mar 21 2022
STATUS
approved