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!)
A174809 A (100,-196) Somos 4 sequence. 2

%I #8 Sep 08 2022 08:45:51

%S 1,4,68,3664,559296,292983296,677028302848,5742750182014976,

%T 140199451387306704896,10334993471103615132237824,

%U 3076052900280004094541239943168,3864163084421857020112275272686895104

%N A (100,-196) Somos 4 sequence.

%C Hankel transform of A174808.

%H G. C. Greubel, <a href="/A174809/b174809.txt">Table of n, a(n) for n = 0..60</a>

%F a(n) = (100*a(n-1)*a(n-3) - 196*a(n-2)^2)/a(n-4), n>3.

%t RecurrenceTable[{a[n] == (100*a[n-1]*a[n-3] -196*a[n-2]^2)/a[n-4], a[0] == 1, a[1] == 4, a[2] == 68, a[3] == 3664}, a, {n, 0, 20}] (* _G. C. Greubel_, Sep 18 2018 *)

%o (PARI) m=20; v=concat([1,4,68,3664], vector(m-4)); for(n=5, m, v[n] = ( 100*v[n-1]*v[n-3] - 196*v[n-2]^2)/v[n-4]); v \\ _G. C. Greubel_, Sep 18 2018

%o (Magma) I:=[1,4,68,3664]; [n le 4 select I[n] else (100*Self(n-1)*Self(n-3) - 196*Self(n-2)^2)/Self(n-4): n in [1..20]]; // _G. C. Greubel_, Sep 18 2018

%K easy,nonn

%O 0,2

%A _Paul Barry_, Mar 29 2010

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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)