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.

A283329 a(n) = (1 + Sum_{j=1..K-1} a(n-j) + a(n-1)*a(n-K+1))/a(n-K) with a(1),...,a(K)=1, where K=4.

This page as a plain text file.
%I A283329 #38 Nov 06 2020 08:47:27
%S A283329 1,1,1,1,5,13,33,217,617,1633,10813,30805,81601,540401,1539601,
%T A283329 4078401,27009205,76949213,203838433,1349919817,3845921017,
%U A283329 10187843233,67468981613,192219101605,509188323201,3372099160801,9607109159201,25449228316801,168537489058405
%N A283329 a(n) = (1 + Sum_{j=1..K-1} a(n-j) + a(n-1)*a(n-K+1))/a(n-K) with a(1),...,a(K)=1, where K=4.
%H A283329 Seiichi Manyama, <a href="/A283329/b283329.txt">Table of n, a(n) for n = 1..1770</a>
%H A283329 Matthew Christopher Russell, <a href="http://www.math.rutgers.edu/~zeilberg/Theses/MatthewRussellThesis.pdf">Using experimental mathematics to conjecture and prove theorems in the theory of partitions and commutative and non-commutative recurrences</a>, PhD Dissertation, Mathematics Department, Rutgers University, May 2016; see <a href="https://pdfs.semanticscholar.org/fdeb/e20954dacb7ec7a24afe2cf491b951c5a28d.pdf">also</a>.
%H A283329 <a href="/index/Rec#order_09">Index entries for linear recurrences with constant coefficients</a>, signature (0,0,51,0,0,-51,0,0,1).
%F A283329 From _Seiichi Manyama_, Mar 18 2017: (Start)
%F A283329 a(3*n)   = 3*a(3*n-1) - a(3*n-2) - 1,
%F A283329 a(3*n+1) = 3*a(3*n)   - a(3*n-1) - 1,
%F A283329 a(3*n+2) = 7*a(3*n+1) - a(3*n)   - 1. (End)
%F A283329 From _Colin Barker_, Nov 03 2020: (Start)
%F A283329 G.f.: x*(1 + x + x^2 - 50*x^3 - 46*x^4 - 38*x^5 + 33*x^6 + 13*x^7 + 5*x^8) / ((1 - x)*(1 + x + x^2)*(1 - 50*x^3 + x^6)).
%F A283329 a(n) = 51*a(n-3) - 51*a(n-6) + a(n-9).
%F A283329 (End)
%o A283329 (Ruby)
%o A283329 def A(k, n)
%o A283329   a = Array.new(k, 1)
%o A283329   ary = [1]
%o A283329   while ary.size < n
%o A283329     j = (1..k - 1).inject(1){|s, i| s + a[-i]} + a[1] * a[-1]
%o A283329     break if j % a[0] > 0
%o A283329     a = *a[1..-1], j / a[0]
%o A283329     ary << a[0]
%o A283329   end
%o A283329   ary
%o A283329 end
%o A283329 def A283329(n)
%o A283329   A(4, n)
%o A283329 end # _Seiichi Manyama_, Mar 18 2017
%Y A283329 Cf. A276123, A283330.
%K A283329 nonn
%O A283329 1,5
%A A283329 _N. J. A. Sloane_, Mar 17 2017
%E A283329 More terms from _Seiichi Manyama_, Mar 17 2017