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 A369157 #10 Jan 15 2024 09:03:13 %S A369157 1,5,35,285,2530,23750,231850,2329850,23940475,250394375,2656849375, %T A369157 28529354375,309445377750,3385369628750,37312228370000, %U A369157 413913023212500,4617886656665625,51781448191328125,583266654383859375,6596645477096428125,74881064169289121875 %N A369157 Expansion of (1/x) * Series_Reversion( x / ((1+x)^5-x^5) ). %H A369157 <a href="/index/Res#revert">Index entries for reversions of series</a> %F A369157 a(n) = (1/(n+1)) * Sum_{k=0..floor(n/5)} (-1)^k * binomial(n+1,k) * binomial(5*n-5*k+5,n-5*k). %o A369157 (PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/((1+x)^5-x^5))/x) %o A369157 (PARI) a(n) = sum(k=0, n\5, (-1)^k*binomial(n+1, k)*binomial(5*n-5*k+5, n-5*k))/(n+1); %Y A369157 Cf. A107264, A369156. %Y A369157 Cf. A349361, A369128. %K A369157 nonn %O A369157 0,2 %A A369157 _Seiichi Manyama_, Jan 15 2024