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 A017510 #16 Sep 08 2022 08:44:42 %S A017510 100,441,1024,1849,2916,4225,5776,7569,9604,11881,14400,17161,20164, %T A017510 23409,26896,30625,34596,38809,43264,47961,52900,58081,63504,69169, %U A017510 75076,81225,87616,94249,101124,108241,115600,123201,131044,139129,147456,156025,164836,173889,183184,192721 %N A017510 a(n) = (11*n + 10)^2. %H A017510 Harvey P. Dale, <a href="/A017510/b017510.txt">Table of n, a(n) for n = 0..1000</a> %H A017510 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,1). %F A017510 From _G. C. Greubel_, Oct 29 2019: (Start) %F A017510 G.f.: (100 + 141*x + x^2)/(1-x)^3. %F A017510 E.g.f.: (100 + 341*x + 121*x^2)*exp(x). (End) %p A017510 seq((11*n+10)^2, n=0..40); # _G. C. Greubel_, Oct 29 2019 %t A017510 (11*Range[0,40]+10)^2 (* or *) LinearRecurrence[{3,-3,1}, {100,441,1024}, 40] (* _Harvey P. Dale_, Mar 31 2016 *) %o A017510 (PARI) a(n)=(11*n+10)^2 \\ _Charles R Greathouse IV_, Jun 17 2017 %o A017510 (Magma) [(11*n+10)^2: n in [0..40]]; // _G. C. Greubel_, Oct 29 2019 %o A017510 (Sage) [(11*n+10)^2 for n in (0..40)] # _G. C. Greubel_, Oct 29 2019 %o A017510 (GAP) List([0..40], n-> (11*n+10)^2); # _G. C. Greubel_, Oct 29 2019 %Y A017510 Powers of the form (11*n+10)^m: A017509 (m=1), this sequence (m=2), A017511 (m=3), A017512 (m=4), A017513 (m=5), A017514 (m=6), A017515 (m=7), A017516 (m=8), A017517 (m=9), A017518 (m=10), A017519 (m=11), A017520 (m=12). %K A017510 nonn,easy %O A017510 0,1 %A A017510 _N. J. A. Sloane_