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 A084064 #11 Sep 08 2022 08:45:10 %S A084064 1,1,6,45,452,5725,87704,1577849,32618512,762046137,19856872032, %T A084064 571007744549,17962793210944,613650073693397,22624291883495808, %U A084064 895379458590349425,37861032312753094912,1703550488551604490353 %N A084064 Third row of number array A084061. %H A084064 G. C. Greubel, <a href="/A084064/b084064.txt">Table of n, a(n) for n = 0..300</a> %F A084064 a(n) = ( (n - sqrt(2))^n + (n + sqrt(2))^n )/2. %p A084064 seq( round(((n-sqrt(2))^n + (n+sqrt(2))^n)/2), n=0..20); # _G. C. Greubel_, Jan 11 2020 %t A084064 Table[Round[((n+Sqrt[2])^n + (n-Sqrt[2])^n)/2], {n,0,20}] (* _G. C. Greubel_, Jan 11 2020 *) %o A084064 (PARI) vector(21, n, round(((n-1-sqrt(2))^(n-1) + (n-1+sqrt(2))^(n-1))/2) ) \\ _G. C. Greubel_, Jan 11 2020 %o A084064 (Magma) [Round(((n-Sqrt(2))^n + (n+Sqrt(2))^n)/2): n in [0..20]]; // _G. C. Greubel_, Jan 11 2020 %o A084064 (Sage) [round(((n-sqrt(2))^n + (n+sqrt(2))^n)/2) for n in (0..20)] # _G. C. Greubel_, Jan 11 2020 %o A084064 (GAP) List([0..20], n-> ((n-Sqrt(2))^n + (n+Sqrt(2))^n)/2); # _G. C. Greubel_, Jan 11 2020 %Y A084064 Cf. A000312, A062024, A084061, A084062, A084063, A084065, A084095, A084096. %K A084064 nonn,easy %O A084064 0,3 %A A084064 _Paul Barry_, May 11 2003