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 A254282 #28 Mar 08 2024 11:59:40 %S A254282 1,9,135,2430,48114,1010394,22084326,496897335,11428638705, %T A254282 267430145697,6345388002447,152289312058728,3690087176807640, %U A254282 90143558176300920,2217531531137002632,54883905395640815142,1365640704844474400298,34141017621111860007450 %N A254282 Expansion of (1 - (1 - 27*x)^(1/3)) / (9*x). %H A254282 Harvey P. Dale, <a href="/A254282/b254282.txt">Table of n, a(n) for n = 0..700</a> %F A254282 G.f.: (1 - (1-27*x)^(1/3)) / (9*x). %F A254282 a(n) ~ 3^(3*n) / (Gamma(2/3) * n^(4/3)). %F A254282 Recurrence: (n+1)*a(n) = 9*(3*n-1)*a(n-1). %F A254282 a(n) = 27^n * Gamma(n+2/3) / (Gamma(2/3) * Gamma(n+2)). %F A254282 E.g.f.: hypergeom([2/3], [2], 27*x). - _Vaclav Kotesovec_, Jan 28 2015 %F A254282 From _Peter Bala_, Sep 01 2017: (Start) %F A254282 a(n) = (-1)^n*binomial(1/3, n+1)*3^(3*n+1). Cf. A000108(n) = (-1)^n*binomial(1/2, n+1)*2^(2*n+1). %F A254282 a(n) = 3^n*A025748(n+1). (End) %t A254282 CoefficientList[Series[(1-(1-27*x)^(1/3))/(9*x),{x,0,20}],x] %t A254282 CoefficientList[Series[Hypergeometric1F1[2/3,2,27*x],{x,0,20}],x] * Range[0,20]! (* _Vaclav Kotesovec_, Jan 28 2015 *) %t A254282 nxt[{n_,a_}]:={n+1,((27n+18)*a)/(n+2)}; NestList[nxt,{0,1},20][[All,2]] (* _Harvey P. Dale_, Jun 03 2019 *) %o A254282 (Magma) [Round(3^(3*n)*Gamma(n+2/3)/(Gamma(2/3)*Gamma(n+2))): n in [0..30]]; // _G. C. Greubel_, Aug 10 2022 %o A254282 (SageMath) [3^(3*n)*rising_factorial(2/3,n)/factorial(n+1) for n in (0..30)] # _G. C. Greubel_, Aug 10 2022 %Y A254282 Cf. A000108, A008544, A254286, A254287, A025748. %K A254282 nonn,easy %O A254282 0,2 %A A254282 _Vaclav Kotesovec_, Jan 27 2015