cp's OEIS Frontend

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.

A084065 Fourth row of number array A084061.

This page as a plain text file.
%I A084065 #6 Sep 08 2022 08:45:10
%S A084065 1,1,7,54,553,7100,109863,1991752,41426257,972602640,25447064743,
%T A084065 734276705888,23166635069241,793426715543488,29316839407495111,
%U A084065 1162492244159875200,49240280161094287777,2218952409252783579392
%N A084065 Fourth row of number array A084061.
%H A084065 G. C. Greubel, <a href="/A084065/b084065.txt">Table of n, a(n) for n = 0..300</a>
%F A084065 a(n) = ( (n - sqrt(3))^n + (n + sqrt(3))^n )/2.
%p A084065 seq( round(((n-sqrt(3))^n + (n+sqrt(3))^n)/2), n=0..20); # _G. C. Greubel_, Jan 11 2020
%t A084065 Table[Round[((n+Sqrt[3])^n + (n-Sqrt[3])^n)/2], {n,0,20}] (* _G. C. Greubel_, Jan 11 2020 *)
%o A084065 (PARI) vector(21, n, round(((n-1-sqrt(3))^(n-1) + (n-1+sqrt(3))^(n-1))/2) ) \\ _G. C. Greubel_, Jan 11 2020
%o A084065 (Magma) [Round(((n-Sqrt(3))^n + (n+Sqrt(3))^n)/2): n in [0..20]]; // _G. C. Greubel_, Jan 11 2020
%o A084065 (Sage) [round(((n-sqrt(3))^n + (n+sqrt(3))^n)/2) for n in (0..20)] # _G. C. Greubel_, Jan 11 2020
%o A084065 (GAP) List([0..20], n-> ((n-Sqrt(3))^n + (n+Sqrt(3))^n)/2); # _G. C. Greubel_, Jan 11 2020
%Y A084065 Cf. A084061, A084062, A084063, A084064, A084095, A084096.
%K A084065 easy,nonn
%O A084065 0,3
%A A084065 _Paul Barry_, May 11 2003