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 A085899 #9 Apr 21 2021 12:59:55 %S A085899 4,9,16,23,30,38,46,53,61,69,77,85,93,101,109,117,124,132,140,148,156, %T A085899 164,172,180,188,196,204,212,220,228,236,244,252,260,268,276,284,292, %U A085899 300,308,316,324,332,340,348,356,364,372,380,388 %N A085899 a(n) = floor( 2*(1 + n + 2*n^2 + 4*n^3)/(1 + 2*n + n^2)). %e A085899 a(2) = floor(2*(1*2^0+1*2^1+2*2^2+4*2^3)/(1*2^0+2*2^1+1*2^2)) = floor(2*43/9) = floor(9.55556) = 9. %t A085899 Table[Floor[(2(1+n+2n^2+4n^3))/(1+2n+n^2)],{n,50}] (* _Harvey P. Dale_, Apr 01 2018 *) %o A085899 (PARI) a(n) = floor(2*((1 + n + 2*n^2 + 4*n^3)/(1 + 2*n + n^2))); \\ _Michel Marcus_, Aug 31 2013 %Y A085899 Cf. A086790, A086814, A086822. %K A085899 nonn,easy %O A085899 1,1 %A A085899 Wang Dan (wangdan01(AT)lycos.com), Aug 15 2003 %E A085899 Definition corrected by _Michel Marcus_, Aug 31 2013