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.

A234529 3*binomial(10*n+6,n)/(5*n+3).

This page as a plain text file.
%I A234529 #17 Sep 08 2022 08:46:06
%S A234529 1,6,75,1190,21285,409266,8259888,172593900,3701885490,81033954430,
%T A234529 1803028662435,40658396849388,927146157991625,21342995124948000,
%U A234529 495322997953271580,11576581508367256920,272239271289546497046,6437043284012559773100
%N A234529 3*binomial(10*n+6,n)/(5*n+3).
%C A234529 Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), where p=10, r=6.
%H A234529 Vincenzo Librandi, <a href="/A234529/b234529.txt">Table of n, a(n) for n = 0..200</a>
%H A234529 J-C. Aval, <a href="http://arxiv.org/abs/0711.0906">Multivariate Fuss-Catalan Numbers</a>, arXiv:0711.0906v1, Discrete Math., 308 (2008), 4660-4669.
%H A234529 Thomas A. Dowling, <a href="http://www.mhhe.com/math/advmath/rosen/r5/instructor/applications/ch07.pdf">Catalan Numbers Chapter 7</a>
%H A234529 Wojciech Mlotkowski, <a href="http://www.math.uiuc.edu/documenta/vol-15/28.pdf">Fuss-Catalan Numbers in Noncommutative Probability</a>, Docum. Mathm. 15: 939-955.
%F A234529 G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, where p=10, r=6.
%t A234529 Table[3 Binomial[10 n + 6, n]/(5 n + 3), {n, 0, 30}] (* _Vincenzo Librandi_, Dec 27 2013 *)
%o A234529 (PARI) a(n) = 3*binomial(10*n+6,n)/(5*n+3);
%o A234529 (PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(5/3))^6+x*O(x^n)); polcoeff(B, n)}
%o A234529 (Magma) [3*Binomial(10*n+6, n)/(5*n+3): n in [0..30]]; // _Vincenzo Librandi_, Dec 27 2013
%Y A234529 Cf. A000108, A059968, A234525, A234526, A234527, A234528, A234570, A234571, A234573, A229963.
%K A234529 nonn
%O A234529 0,2
%A A234529 _Tim Fulford_, Dec 27 2013