OFFSET
0,13
COMMENTS
Sequence defined by recursion derived from Sato discrete tau function.
When extended to n<0 by a(n) = a(13-n) for all n in Z, then also a(n+6)*a(n-6) = a(n+5)*a(n-5) + a(n+3)*a(n-3) for all n in Z. It is a Gale-Robinson sequence. - Michael Somos, Nov 28 2024
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..345
Mohamed Bensaid, Sato tau functions and construction of Somos sequence, arXiv:2409.05911 [math.NT], 2024.
Eric Weisstein's World of Mathematics, Somos Sequence.
MAPLE
a:= proc(n) option remember; `if`(n<12, 1,
(a(n-3)*a(n-9)+a(n-1)*a(n-11))/a(n-12))
end:
seq(a(n), n=0..42); # Alois P. Heinz, Sep 02 2024
MATHEMATICA
a[n_] := a[n] = If[n < 12, 1, (a[n-3]*a[n-9] + a[n-1]*a[n-11]) / a[n-12]]; Array[a, 40, 0] (* Amiram Eldar, Sep 02 2024 *)
PROG
(PARI) seq(n)={my(a=vector(n+1, i, 1)); for(n=13, #a, a[n] =(a[n-3]*a[n-9]+a[n-1]*a[n-11])/a[n-12]); a} \\ Andrew Howroyd, Sep 03 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Mohamed Bensaid, Sep 02 2024
STATUS
approved