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 A143857 #27 Jul 08 2023 16:02:30 %S A143857 8,163,3074,62503,1399684,34588811,939524102,27894275215,900000000008, %T A143857 31384283767219,1176925259169802,47248516628391479, %U A143857 2022385242251558924,91957716979980468763,4427218577690292387854,225009351233083599856159 %N A143857 a(n) = n + (n+1)*(n+2)^(n+3). %C A143857 Suggested by Karl Vago's contributions to Dario Alpern's list of records. %H A143857 Vincenzo Librandi, <a href="/A143857/b143857.txt">Table of n, a(n) for n = 0..250</a> %H A143857 Dario A. Alpern, <a href="https://www.alpertron.com.ar/ECMREC.HTM">ECM Factorization applet records</a> %H A143857 Dario A. Alpern, <a href="https://www.alpertron.com.ar/ECM.HTM">Factorization using the Elliptic Curve Method</a> %F A143857 a(n) = n + A061250(n+3). - _R. J. Mathar_, Sep 04 2008 %e A143857 a(1) = 1+(1+1)*(1+2)^(1+3) = 1+2*3^4 = 163. %p A143857 A143857:=n->n+(n+1)*(n+2)^(n+3); seq(A143857(n), n=0..20); # _Wesley Ivan Hurt_, Mar 20 2014 %t A143857 Table[n + (n+1)*(n+2)^(n+3), {n, 0, 20}] (* _Vincenzo Librandi_, Mar 20 2014 *) %o A143857 (Magma) [n+(n+1)*(n+2)^(n+3): n in [0..20]]; // _Vincenzo Librandi_, Dec 27 2010 %o A143857 (PARI) vector(21, n, (n-1) + n*(n+1)^(n+2)) \\ _G. C. Greubel_, Nov 09 2019 %o A143857 (Sage) [n + (n+1)*(n+2)^(n+3) for n in (0..20)] # _G. C. Greubel_, Nov 09 2019 %o A143857 (GAP) List([0..20], n-> n + (n+1)*(n+2)^(n+3)); # _G. C. Greubel_, Nov 09 2019 %Y A143857 Cf. A007778, A061250. %K A143857 nonn,easy %O A143857 0,1 %A A143857 _Reinhard Zumkeller_, Sep 03 2008