cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A387313 Expansion of 1/((1-x) * (1-9*x))^(5/2).

This page as a plain text file.
%I A387313 #17 Aug 28 2025 17:25:36
%S A387313 1,25,415,5775,72870,864150,9818130,108109650,1162302735,12262882775,
%T A387313 127424209913,1307536637225,13276264807260,133597932407100,
%U A387313 1334029357684980,13231465264538100,130461712570627245,1279632533997010725,12492837802976030115,121456026730456739475
%N A387313 Expansion of 1/((1-x) * (1-9*x))^(5/2).
%H A387313 Vincenzo Librandi, <a href="/A387313/b387313.txt">Table of n, a(n) for n = 0..800</a>
%F A387313 n*a(n) = (10*n+15)*a(n-1) - 9*(n+3)*a(n-2) for n > 1.
%F A387313 a(n) = (-1)^n * Sum_{k=0..n} 9^k * binomial(-5/2,k) * binomial(-5/2,n-k).
%F A387313 a(n) = Sum_{k=0..n} (-8)^k * binomial(-5/2,k) * binomial(n+4,n-k).
%F A387313 a(n) = Sum_{k=0..n} 8^k * 9^(n-k) * binomial(-5/2,k) * binomial(n+4,n-k).
%F A387313 a(n) = (binomial(n+4,2)/6) * A387307(n).
%F A387313 a(n) = (-1)^n * Sum_{k=0..n} 10^k * (9/10)^(n-k) * binomial(-5/2,k) * binomial(k,n-k).
%t A387313 CoefficientList[Series[1/((1-x)*(1-9*x))^(5/2),{x,0,33}],x] (* _Vincenzo Librandi_, Aug 28 2025 *)
%o A387313 (PARI) my(N=20, x='x+O('x^N)); Vec(1/((1-x)*(1-9*x))^(5/2))
%o A387313 (Magma) R<x> := PowerSeriesRing(Rationals(), 34); f := 1/((1-x) * (1-9*x))^(5/2); coeffs := [ Coefficient(f, n) : n in [0..33] ]; coeffs; // _Vincenzo Librandi_, Aug 28 2025
%Y A387313 Cf. A084771, A331516, A387314.
%Y A387313 Cf. A387229, A387307.
%K A387313 nonn,new
%O A387313 0,2
%A A387313 _Seiichi Manyama_, Aug 25 2025