cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A375621 a(n) = (a(n-3)*a(n-5) + a(n-1)*a(n-7))/a(n-8) with a(0) = ... = a(7) = 1.

This page as a plain text file.
%I A375621 #48 Feb 16 2025 08:34:07
%S A375621 1,1,1,1,1,1,1,1,2,3,4,6,9,17,35,106,210,385,1028,2767,9761,32795,
%T A375621 129759,351733,1076957,6165427,27815973,148629048,721531991,
%U A375621 3768314574,17276660082,109959356649,1149560654775,7208229224331,53412249630318,392919259603556
%N A375621 a(n) = (a(n-3)*a(n-5) + a(n-1)*a(n-7))/a(n-8) with a(0) = ... = a(7) = 1.
%C A375621 Sequence defined by recursion derived from Sato discrete tau function.
%H A375621 Mohamed Bensaid, <a href="/A375621/b375621.txt">Table of n, a(n) for n = 0..263</a>
%H A375621 Mohamed Bensaid, <a href="https://arxiv.org/abs/2409.05911">Sato tau functions and construction of Somos sequence</a>, arXiv:2409.05911 [math.NT], 2024.
%H A375621 A. J. van der Poorten, <a href="https://arxiv.org/abs/math/0412372">Curves of Genus 2, Continued Fractions and Somos Sequences</a>, arXiv:math/0412372 [math.NT], 2004.
%H A375621 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/SomosSequence.html">Somos Sequence.</a>
%p A375621 a:= proc(n) option remember; `if`(n<8, 1,
%p A375621      (a(n-3)*a(n-5) + a(n-1)*a(n-7))/a(n-8))
%p A375621     end:
%p A375621 seq(a(n), n=0..35);  # _Alois P. Heinz_, Aug 24 2024
%o A375621 (Python)
%o A375621 def calculate_terms(n):
%o A375621     a = [1] * n
%o A375621     for l in range(n - 8):
%o A375621         a[l + 8] = (a[l + 3] * a[l + 5] + a[l + 7] * a[l + 1]) // a[l]
%o A375621     return a
%Y A375621 Cf. A102276, A108896.
%K A375621 nonn
%O A375621 0,9
%A A375621 _Mohamed Bensaid_, Aug 21 2024