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 A274325 #22 Mar 17 2024 23:38:07 %S A274325 1,1,17,122,513,1563,3889,8404,16385,29525,50001,80526,124417,185647, %T A274325 268913,379688,524289,709929,944785,1238050,1600001,2042051,2576817, %U A274325 3218172,3981313,4882813,5940689,7174454,8605185,10255575,12150001,14314576,16777217 %N A274325 Number of partitions of n^5 into at most two parts. %H A274325 Colin Barker, <a href="/A274325/b274325.txt">Table of n, a(n) for n = 0..1000</a> %H A274325 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (5,-9,5,5,-9,5,-1). %F A274325 Coefficient of x^(n^5) in 1/((1-x)*(1-x^2)). %F A274325 a(n) = A008619(n^5). %F A274325 a(n) = (3 + (-1)^n + 2*n^5)/4. %F A274325 a(n) = 5*a(n-1) - 9*a(n-2) + 5*a(n-3) + 5*a(n-4) - 9*a(n-5) + 5*a(n-6) - a(n-7) for n > 6. %F A274325 G.f.: (1 - 4*x + 21*x^2 + 41*x^3 + 46*x^4 + 15*x^5) / ((1-x)^6*(1+x)). %F A274325 E.g.f.: ((2 + x + 15*x^2 + 25*x^3 + 10*x^4 + x^5)*cosh(x) + (1 + x + 15*x^2 + 25*x^3 + 10*x^4 + x^5)*sinh(x))/2. - _Stefano Spezia_, Mar 17 2024 %p A274325 A274325:=n->(3+(-1)^n+2*n^5)/4: seq(A274325(n), n=0..50); # _Wesley Ivan Hurt_, Jun 25 2016 %t A274325 Table[(3+(-1)^n+2*n^5)/4, {n, 0, 50}] (* _Wesley Ivan Hurt_, Jun 25 2016 *) %o A274325 (PARI) %o A274325 \\ b(n) is the coefficient of x^n in the g.f. 1/((1-x)*(1-x^2)). %o A274325 b(n) = (3+(-1)^n+2*n)/4 %o A274325 vector(50, n, n--; b(n^5)) %o A274325 (Magma) [(3+(-1)^n+2*n^5)/4 : n in [0..50]]; // _Wesley Ivan Hurt_, Jun 25 2016 %Y A274325 A subsequence of A008619. %Y A274325 Cf. A099392 (n^2), A274324 (n^3). %K A274325 nonn,easy %O A274325 0,3 %A A274325 _Colin Barker_, Jun 18 2016