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

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A174809 A (100,-196) Somos 4 sequence. 2
1, 4, 68, 3664, 559296, 292983296, 677028302848, 5742750182014976, 140199451387306704896, 10334993471103615132237824, 3076052900280004094541239943168, 3864163084421857020112275272686895104 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Hankel transform of A174808.
LINKS
FORMULA
a(n) = (100*a(n-1)*a(n-3) - 196*a(n-2)^2)/a(n-4), n>3.
MATHEMATICA
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 *)
PROG
(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
(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
CROSSREFS
Sequence in context: A009520 A009791 A012484 * A363427 A125587 A134794
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Mar 29 2010
STATUS
approved

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 December 9 07:37 EST 2023. Contains 367689 sequences. (Running on oeis4.)