login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A241594 a(n) = -(8*a(n-4)*a(n-1)+57*a(n-3)*a(n-2))/a(n-5) with initial values 1, 0, -1, 1, 8, 57, -455. 2

%I #22 Aug 14 2023 16:03:42

%S 1,0,-1,1,8,57,-455,22352,47767,69739671,3385862936,1747973613295,

%T -632038062613231,319807929289790304,778756000716629557903,

%U 186509371006506937278833,-7581885296067966478838810840,-17592286469464275110206466526327,594744699237794019378328459208828297

%N a(n) = -(8*a(n-4)*a(n-1)+57*a(n-3)*a(n-2))/a(n-5) with initial values 1, 0, -1, 1, 8, 57, -455.

%H G. C. Greubel, <a href="/A241594/b241594.txt">Table of n, a(n) for n = 0..90</a>

%H R. W. Gosper and Richard C. Schroeppel, <a href="https://arxiv.org/abs/math/0703470">Somos Sequence Near-Addition Formulas and Modular Theta Functions</a>, arXiv:math/0703470 [math.NT], 2007. See h_n.

%p f:=proc(n) option remember;

%p if n <= 2 then 1-n

%p elif n=3 then 1

%p elif n=4 then 8

%p elif n=5 then 57

%p elif n=6 then -455

%p else -(8*f(n-4)*f(n-1)+57*f(n-3)*f(n-2))/f(n-5); fi; end;

%p [seq(f(n),n=0..30)];

%t a[n_] := a[n] = If[n <= 6, {1, 0, -1, 1, 8, 57, -455}[[n + 1]], -(8*a[n - 4]*a[n - 1] + 57*a[n - 3]*a[n - 2])/a[n - 5]];

%t Table[a[n], {n, 0, 18}] (* _Jean-François Alcover_, Dec 02 2017 *)

%t nxt[{a_,b_,c_,d_,e_}]:={b,c,d,e,-(8b e+57c d)/a}; Join[{1,0},NestList[nxt,{-1,1,8,57,-455},20] [[;;,1]]] (* _Harvey P. Dale_, Aug 14 2023 *)

%o (Magma) I:=[22352, 47767, 69739671, 3385862936, 1747973613295]; [1, 0, -1, 1, 8, 57, -455] cat [n le 5 select I[n] else -(8*Self(n-4)*Self(n-1) + 57*Self(n-3)*Self(n-2))/Self(n-5): n in [1..20]]; // _G. C. Greubel_, Aug 08 2018

%Y See A241595 for another version.

%K sign

%O 0,5

%A _N. J. A. Sloane_, May 18 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)