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.

A386274 Expansion of 1/(1 - 49*x)^(5/7).

Original entry on oeis.org

1, 35, 1470, 65170, 2965235, 136993857, 6393046660, 300473193020, 14197358370195, 673585780452585, 32062683149543046, 1530264423046372650, 73197648235718158425, 3507856526988647130675, 168377113295455062272400, 8093326579068206659893360, 389491341617657445507367950
Offset: 0

Views

Author

Seiichi Manyama, Jul 17 2025

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[1/(Surd[1-49x,7])^5,{x,0,20}],x] (* Harvey P. Dale, Aug 01 2025 *)
  • PARI
    my(N=20, x='x+O('x^N)); Vec(1/(1-49*x)^(5/7))

Formula

a(n) = (-49)^n * binomial(-5/7,n).
a(n) = 7^n/n! * Product_{k=0..n-1} (7*k+5).
a(n) = 7^n * Product_{k=1..n} (7 - 2/k).
D-finite with recurrence n*a(n) +7*(-7*n+2)*a(n-1)=0. - R. J. Mathar, Jul 30 2025