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 A017496 #18 Sep 08 2022 08:44:42 %S A017496 68719476736,2213314919066161,531441000000000000,22563490300366186081, %T A017496 390877006486250192896,3909188328478827879681,26963771415920784510976, %U A017496 142241757136172119140625,612709757329767363772416,2252191588960823337718801 %N A017496 a(n) = (11*n + 8)^12. %H A017496 G. C. Greubel, <a href="/A017496/b017496.txt">Table of n, a(n) for n = 0..1000</a> %H A017496 <a href="/index/Rec#order_13">Index entries for linear recurrences with constant coefficients</a>, signature (13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1). %F A017496 From _G. C. Greubel_, Sep 22 2019: (Start) %F A017496 G.f.: (68719476736 +2212421565868593*x +502673266171325315 x^2 + 15827376210283000143*x^3 +138371071649062718037*x^4 + 437329793311303632234*x^5 +556703322340591831614*x^6 + 291323423723258446014*x^7 +59225473544688673002*x^8 + 3967943081254819733*x^9 +58867623955964175*x^10 +56693905466563*x^11 + 531441*x^12)/(1-x)^13. %F A017496 E.g.f.: (68719476736 +2213246199589425*x +263507219440672207*x^2 + 3495967862733984638*x^3 +12658451587242860861*x^4 +18126123796309288584* x^5 +12400673710435349284*x^6 +4501229025478529124*x^7 + 916653053822529507*x^8 +106739635024880275*x^9 +6967025684650009*x^10 + 234526193242242*x^11 +3138428376721*x^12)*exp(x). (End) %p A017496 seq((11*n+8)^12, n=0..20); # _G. C. Greubel_, Sep 22 2019 %t A017496 (11*Range[0,20]+8)^12 (* _Harvey P. Dale_, Jul 31 2012 *) %o A017496 (Maxima) makelist( (11*n+8)^12, n, 0, 30); /* _Martin Ettl_, Oct 21 2012 */ %o A017496 (PARI) vector(20, n, (11*n-3)^12) \\ _G. C. Greubel_, Sep 22 2019 %o A017496 (Magma) [(11*n+8)^12: n in [0..20]]; // _G. C. Greubel_, Sep 22 2019 %o A017496 (Sage) [(11*n+8)^12 for n in (0..20)] # _G. C. Greubel_, Sep 22 2019 %o A017496 (GAP) List([0..20], n-> (11*n+8)^12); # _G. C. Greubel_, Sep 22 2019 %Y A017496 Powers of the form (11*n+8)^m: A017485 (m=1), A017486 (m=2), A017487 (m=3), A017488 (m=4), A017489 (m=5), A017490 (m=6), A017491 (m=7), A017492 (m=8), A017493 (m=9), A017494 (m=10), A017495 (m=11), this sequence (m=12). %K A017496 nonn,easy %O A017496 0,1 %A A017496 _N. J. A. Sloane_