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 A236773 #31 Sep 08 2022 08:46:06 %S A236773 0,1,6,16,33,59,96,145,210,292,393,515,660,829,1026,1252,1509,1799, %T A236773 2124,2485,2886,3328,3813,4343,4920,5545,6222,6952,7737,8579,9480, %U A236773 10441,11466,12556,13713,14939,16236,17605,19050,20572,22173,23855,25620,27469 %N A236773 a(n) = n + floor( n^2/2 + n^3/3 ). %C A236773 This sequence follows A074148 and A042965, A236771. %C A236773 The prime terms are 59, 829, 14939, 35759, 93719, 132409, 155219, 290399, 414179, 487463, ... . %C A236773 If a(k) is prime then k == 1, 5, 7 or 11 (mod 12). %C A236773 Third differences: 1, 2, 2, 2, 1, 4 repeated (unsigned terms of A181982). %C A236773 Fourth differences: 1, 0, 0, -1, 3, -3 repeated (see A131193). %H A236773 Bruno Berselli, <a href="/A236773/b236773.txt">Table of n, a(n) for n = 0..1000</a> %H A236773 <a href="/index/Rec#order_09">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,1,0,0,1,-3,3,-1). %F A236773 G.f.: x*(1+3*x+x^2+2*x^3+2*x^4+2*x^5+x^7) / ((1+x)*(1-x+x^2)*(1+x+x^2)*(1-x)^4). %F A236773 a(n) = 3*a(n-1) -3*a(n-2) +a(n-3) +a(n-6) -3*a(n-7) +3*a(n-8) -a(n-9). %F A236773 Also, for h>=0: %F A236773 a(6h) = 6*h*( 12*h^2 + 3*h + 1 ), %F A236773 a(6h+1) = 72*h^3 + 54*h^2 + 18*h + 1, %F A236773 a(6h+2) = 6*( 4*h + 1 )*( 3*h^2 + 3*h + 1 ), %F A236773 a(6h+3) = 2*( 36*h^3 + 63*h^2 + 39*h + 8 ), %F A236773 a(6h+4) = 3*( 24*h^3 + 54*h^2 + 42*h + 11 ), %F A236773 a(6h+5) = 72*h^3 + 198*h^2 + 186*h + 59. %p A236773 seq(n+floor(n^2/2+n^3/3),n=0..43); # _Paolo P. Lava_, Aug 24 2018 %t A236773 Table[n + Floor[n^2/2 + n^3/3], {n, 0, 50}] %t A236773 CoefficientList[Series[x (1 + 3 x + x^2 + 2 x^3 + 2 x^4 + 2 x^5 + x^7)/((1 + x) (1 - x + x^2) (1 + x + x^2) (1 - x)^4), {x, 0, 50}], x] (* _Vincenzo Librandi_, Feb 08 2014 *) %o A236773 (Magma) [n+Floor(n^2/2+n^3/3): n in [0..50]]; %o A236773 (Magma) I:=[0,1,6,16,33,59,96,145,210]; [n le 9 select I[n] else 3*Self(n-1)-3*Self(n-2)+Self(n-3)+Self(n-6)-3*Self(n-7)+3*Self(n-8)-Self(n-9): n in [1..50]]; // _Vincenzo Librandi_, Feb 08 2014 %o A236773 (PARI) vector(60, n, n--; n+floor(n^2/2 +n^3/3)) \\ _G. C. Greubel_, Aug 12 2018 %Y A236773 Cf. A074148: n+floor(n^2/2). %Y A236773 Cf. A042965: n+floor(1/2+n/3); A236771: n+floor(n/2+n^2/3). %Y A236773 Cf. A236772: floor(sum(i=1..n, n^i/i)). %K A236773 nonn,easy %O A236773 0,3 %A A236773 _Bruno Berselli_, Feb 07 2014