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 A172326 #20 Sep 08 2022 08:45:50 %S A172326 0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,69,73,77,81,85,89,93, %T A172326 97,101,105,109,113,117,121,125,129,133,138,142,146,150,154,158,162, %U A172326 166,170,174,178,182,186,190,194,198,202 %N A172326 a(n) = floor(n*(sqrt(7) + sqrt(2))). %C A172326 Also integer part of n*4.0599648734..., where the constant is the largest root of x^4 - 18*x^2 + 25. %H A172326 Vincenzo Librandi, <a href="/A172326/b172326.txt">Table of n, a(n) for n = 0..1000</a> %p A172326 a:=n->floor(n*(sqrt(7)+sqrt(2))): seq(a(n),n=0..60); # _Muniru A Asiru_, Sep 28 2018 %t A172326 With[{c = Sqrt[7] + Sqrt[2]}, Floor[c Range[0, 60]]] (* _Harvey P. Dale_, Mar 23 2011 *) %o A172326 (Magma) [Floor(n*(Sqrt(7)+Sqrt(2))): n in [0..60]]; %o A172326 (PARI) vector(60, n, n--; floor(n*(sqrt(7)+sqrt(2)))) \\ _G. C. Greubel_, Sep 28 2018 %Y A172326 Cf. A110117, A172323-A172332, A172334, A172336-A172338. %K A172326 nonn,easy,less %O A172326 0,2 %A A172326 _Vincenzo Librandi_, Feb 01 2010