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.
%I A234528 #19 Sep 08 2022 08:46:06 %S A234528 1,5,60,935,16555,316251,6353760,132321990,2830853610,61841702065, %T A234528 1373736123760,30935736733230,704631080073635,16204866668942000, %U A234528 375762274309378440,8775795659568727020,206241872189050376550,4873761343609509542490 %N A234528 Binomial(10*n+5,n)/(2*n+1). %C A234528 Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), where p=10, r=5. %H A234528 Vincenzo Librandi, <a href="/A234528/b234528.txt">Table of n, a(n) for n = 0..200</a> %H A234528 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 A234528 Thomas A. Dowling, <a href="http://www.mhhe.com/math/advmath/rosen/r5/instructor/applications/ch07.pdf">Catalan Numbers Chapter 7</a> %H A234528 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 A234528 G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, where p=10, r=5. %t A234528 Table[Binomial[10 n + 5, n]/(2 n + 1), {n, 0, 30}] (* _Vincenzo Librandi_, Dec 28 2013 *) %o A234528 (PARI) a(n) = binomial(10*n+5,n)/(2*n+1); %o A234528 (PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^2)^5+x*O(x^n)); polcoeff(B, n)} %o A234528 (Magma) [Binomial(10*n+5, n)/(2*n+1): n in [0..30]]; // _Vincenzo Librandi_, Dec 28 2013 %Y A234528 Cf. A000108, A059968, A234525, A234526, A234527, A234529, A234570, A234571, A234573, A229963. %K A234528 nonn %O A234528 0,2 %A A234528 _Tim Fulford_, Dec 27 2013