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.

A383944 Expansion of 1/sqrt((1-7*x)^3 * (1+x)).

This page as a plain text file.
%I A383944 #18 Aug 28 2025 00:04:51
%S A383944 1,10,87,708,5565,42798,324275,2430536,18068409,133454610,980588367,
%T A383944 7174290060,52301288949,380120468406,2755437681195,19928252747664,
%U A383944 143839643441265,1036380251867418,7455465737930567,53557027924956500,384241833300244269,2753539115904779070
%N A383944 Expansion of 1/sqrt((1-7*x)^3 * (1+x)).
%H A383944 Vincenzo Librandi, <a href="/A383944/b383944.txt">Table of n, a(n) for n = 0..800</a>
%F A383944 n*a(n) = (6*n+4)*a(n-1) + 7*n*a(n-2) for n > 1.
%F A383944 a(n) = (1/4)^n * Sum_{k=0..n} 7^k * (-1)^(n-k) * (2*k+1) * binomial(2*k,k) * binomial(2*(n-k),n-k).
%F A383944 a(n) = Sum_{k=0..n} 2^k * (-1)^(n-k) * (2*k+1) * binomial(2*k,k) * binomial(n+1,n-k).
%F A383944 a(n) = Sum_{k=0..n} (-2)^k * 7^(n-k) * binomial(2*k,k) * binomial(n+1,n-k).
%t A383944 CoefficientList[Series[1/Sqrt[(1-7*x)^3*(1+x)],{x,0,33}],x] (* _Vincenzo Librandi_, Aug 27 2025 *)
%o A383944 (PARI) my(N=30, x='x+O('x^N)); Vec(1/sqrt((1-7*x)^3*(1+x)))
%o A383944 (Magma) R<x> := PowerSeriesRing(Rationals(), 34); f := 1/Sqrt((1-7*x)^3 * (1+x)); coeffs := [ Coefficient(f, n) : n in [0..33] ]; coeffs; // _Vincenzo Librandi_, Aug 27 2025
%Y A383944 Cf. A322242, A383945.
%K A383944 nonn,changed
%O A383944 0,2
%A A383944 _Seiichi Manyama_, Aug 19 2025