The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A328380 a(n) = (a(n-1) * a(n-3) - 2 * a(n-2)^2) / a(n-4) with a(0) = a(1) = a(2) = a(3) = 1. 2
1, 1, 1, 1, -1, -3, -5, -13, 11, 131, 389, 2311, 9, -81511, -484247, -5751815, -17124617, 710017141, 9644648819, 204006839259, 2405317965859, -84560118880501, -2988387877551859, -105333970856330737, -3722531175803860975, 130866937507290027313 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
This is a (-1,2) generalized Somos-4 sequence.
LINKS
FORMULA
a(n) = a(3-n) for all n in Z.
0 = a(n)*a(n+4) - a(n+1)*a(n+3) + 2*a(n+2)*a(n+2) for all n in Z.
0 = a(n)*a(n+5) - 2*a(n+1)*a(n+4) + a(n+2)*a(n+3) for all n in Z.
0 = a(n)*a(n+6) - 4*a(n+1)*a(n+5) - 7*a(n+3)*a(n+3) for all n in Z.
0 = a(n)*a(n+7) - a(n+1)*a(n+6) - 8*a(n+3)*a(n+4) for all n in Z.
A242107(2*n-3) = a(n) for all n in Z.
MATHEMATICA
a[0] = a[1] = a[2] = a[3] = 1; a[n_] := a[n] = (a[n - 1]*a[n - 3] - 2*a[n - 2]^2)/a[n - 4]; Array[a, 26, 0] (* Amiram Eldar, Jul 06 2020 *)
PROG
(PARI) {a(n) = my(v); if( n<0, n=3-n); n++; v = vector(max(4, n), k, 1); for(k=5, n, v[k] = (v[k-1] * v[k-3] - 2*v[k-2]^2) / v[k-4]); v[n]};
(PARI) {a(n) = my(m=2*n-3, E=ellinit([1, -1, 0, -1, 1]), z=ellpointtoz(E, [0, 1])); (-1)^n * round(ellsigma(E, m*z) / (ellsigma(E, z)^m^2 * 2^(n^2-3*n+2)))}; /* Michael Somos, Feb 25 2020 */
CROSSREFS
Sequence in context: A171424 A231897 A260416 * A256222 A258976 A348659
KEYWORD
sign
AUTHOR
Michael Somos, Feb 23 2020
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 May 17 12:26 EDT 2024. Contains 372600 sequences. (Running on oeis4.)