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.

Showing 1-2 of 2 results.

A386415 G.f. A(x) satisfies A(x) = (1 + 9*x*A(x)^4)^(2/3).

Original entry on oeis.org

1, 6, 135, 4140, 146475, 5629338, 228355281, 9622693080, 417122726490, 18480617374050, 833136935399208, 38094723501749460, 1762459398803643930, 82353342267057244950, 3880848811889775489300, 184228926273804535479216, 8801795826996054546077865, 422898288144162288398536860
Offset: 0

Views

Author

Seiichi Manyama, Jul 21 2025

Keywords

Crossrefs

Programs

  • Maple
    A386415 := proc(n)
        9^n*binomial((8*n+2)/3,n)/(4*n+1) ;
    end proc:
    seq(A386415(n),n=0..80) ; # R. J. Mathar, Jul 30 2025
  • Mathematica
    A386415[n_] := 9^n * Binomial[(8*n + 2)/3, n]/(4*n + 1);
    Array[A386415, 20, 0] (* Paolo Xausa, Aug 01 2025 *)
  • PARI
    apr(n, p, r) = r*binomial(n*p+r, n)/(n*p+r);
    a(n) = 9^n*apr(n, 8/3, 2/3);

Formula

a(n) = 9^n * binomial((8*n+2)/3,n)/(4*n+1).
G.f.: B(x)^2, where B(x) is the g.f. of A386416.
D-finite with recurrence 5*n*(n-1)*(n-2)*(5*n-4)*(5*n+2)*(5*n-7)*(5*n-1)*a(n) -3456*(4*n-11)*(8*n-19)*(8*n-13)*(4*n-5)*(8*n-7)*(2*n-1)*(8*n-1)*a(n-3)=0. - R. J. Mathar, Jul 30 2025

A386414 G.f. A(x) satisfies A(x) = (1 + 9*x*A(x)^3)^(2/3).

Original entry on oeis.org

1, 6, 99, 2142, 52785, 1404702, 39331656, 1141839504, 34057559052, 1037385419400, 32133013365915, 1009060082062110, 32050934711814915, 1027914968037080970, 33240367148212098900, 1082645830435810233960, 35483717092533680418039, 1169426742892003447650666
Offset: 0

Views

Author

Seiichi Manyama, Jul 21 2025

Keywords

Crossrefs

Programs

  • Mathematica
    A386414[n_] := 9^n*Binomial[(6*n + 2)/3, n]/(3*n + 1);
    Array[A386414, 20, 0] (* Paolo Xausa, Aug 01 2025 *)
  • PARI
    apr(n, p, r) = r*binomial(n*p+r, n)/(n*p+r);
    a(n) = 9^n*apr(n, 2, 2/3);

Formula

a(n) = 9^n * binomial((6*n+2)/3,n)/(3*n+1).
G.f.: B(x)^2, where B(x) is the g.f. of A008931.
D-finite with recurrence +n*(3*n+2)*a(n) -6*(6*n-1)*(3*n-2)*a(n-1)=0. - R. J. Mathar, Jul 30 2025
G.f.: 2F1(1/3,5/6 ; 5/3 ; 36*x). - R. J. Mathar, Jul 30 2025
Showing 1-2 of 2 results.