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 A033547 #37 Feb 03 2024 13:37:45 %S A033547 0,2,6,14,28,50,82,126,184,258,350,462,596,754,938,1150,1392,1666, %T A033547 1974,2318,2700,3122,3586,4094,4648,5250,5902,6606,7364,8178,9050, %U A033547 9982,10976,12034,13158,14350,15612,16946,18354,19838,21400,23042,24766,26574,28468 %N A033547 Otto Haxel's guess for magic numbers of nuclear shells. %C A033547 O. Haxel gave a construction procedure. The formulas are due to _Wolfdieter Lang_. %H A033547 G. C. Greubel, <a href="/A033547/b033547.txt">Table of n, a(n) for n = 0..1000</a> %H A033547 O. Haxel, <a href="https://doi.org/10.1002/phbl.19940500410">Die Entstehung des Schalenmodells der Atomkerne</a>, Physikalische Blätter, vol. 50, p. 339, 1994. %H A033547 O. Haxel et al., <a href="http://dx.doi.org/10.1103/PhysRev.75.1766.2">On the "Magic Numbers" in Nuclear Structure</a>, Phys. Rev., 75 (1949), 1766. %H A033547 V. Ladma, <a href="http://www.sweb.cz/vladimir_ladma/english/notes/texts/magicn.htm">Magic Numbers</a> %H A033547 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1). %F A033547 a(n) = n*(n^2 + 5)/3. %F A033547 G.f.: 2*x*(1 - x + x^2)/(1-x)^4. %F A033547 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - _Wesley Ivan Hurt_, Apr 05 2015 %F A033547 E.g.f.: x*(6 + 3*x + x^2)*exp(x)/3. - _G. C. Greubel_, Oct 12 2019 %F A033547 a(n) = A046127(n+1) - 2. - _Jianing Song_, Feb 03 2024 %p A033547 A033547:=n->n*(n^2+5)/3: seq(A033547(n), n=0..50); # _Wesley Ivan Hurt_, Apr 05 2015 %t A033547 Table[n(n^2+5)/3, {n,0,50}] (* _Harvey P. Dale_, Apr 07 2011 *) %t A033547 LinearRecurrence[{4, -6, 4, -1}, {0, 2, 6, 14}, 50] (* _Vincenzo Librandi_, Apr 06 2015 *) %o A033547 (Magma) [n*(n^2+5)/3 : n in [0..50]]; // _Wesley Ivan Hurt_, Apr 05 2015 %o A033547 (PARI) a(n)=n*(n^2+5)/3 \\ _Charles R Greathouse IV_, Jun 25 2017 %o A033547 (Sage) [n*(n^2+5)/3 for n in range(50)] # _G. C. Greubel_, Oct 12 2019 %o A033547 (GAP) List([0..50], n-> n*(n^2+5)/3); # _G. C. Greubel_, Oct 12 2019 %Y A033547 Equals 2*A004006, partial sums of A014206, 2*(partial sums of A000124). %Y A033547 Cf. A018226, A046127. %K A033547 easy,nonn,nice %O A033547 0,2 %A A033547 _Wolfdieter Lang_