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.

A073728 a(n) = Sum_{k=0..n} S(k), where S(n) are the tribonacci generalized numbers A001644.

This page as a plain text file.
%I A073728 #39 Nov 21 2024 11:14:06
%S A073728 3,4,7,14,25,46,85,156,287,528,971,1786,3285,6042,11113,20440,37595,
%T A073728 69148,127183,233926,430257,791366,1455549,2677172,4924087,9056808,
%U A073728 16658067,30638962,56353837,103650866,190643665,350648368,644942899
%N A073728 a(n) = Sum_{k=0..n} S(k), where S(n) are the tribonacci generalized numbers A001644.
%H A073728 Robert Israel, <a href="/A073728/b073728.txt">Table of n, a(n) for n = 0..3399</a>
%H A073728 Daniel Birmajer, Juan B. Gil, and Michael D. Weiner, <a href="http://arxiv.org/abs/1505.06339">Linear recurrence sequences with indices in arithmetic progression and their sums</a>, arXiv:1505.06339 [math.NT], 2015.
%H A073728 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (1,1,1).
%F A073728 a(n) = a(n-1) + a(n-2) + a(n-3), a(0)=3, a(1)=4, a(2)=7.
%F A073728 G.f.: (3+x)/(1-x-x^2-x^3).
%F A073728 a(n) = 3*T(n+1) + T(n), where T(n) are the tribonacci numbers A000073.
%F A073728 a(n) = (S(n+3) - S(n+1))/2, where S(n) = A001644(n). - _Michael D. Weiner_, Mar 27 2015
%F A073728 a(n) = Sum_{r root of x^3-x^2-x-1} r^n/(-r^2+r+2). - _Fabian Pereyra_, Nov 21 2024
%p A073728 A:= gfun[rectoproc]({a(n)=a(n-1)+a(n-2)+a(n-3), a(0)=3, a(1)=4, a(2)=7},a(n),remember):
%p A073728 seq(A(n),n=0..100); # _Robert Israel_, Mar 26 2015
%t A073728 CoefficientList[Series[(3+x)/(1-x-x^2-x^3), {x, 0, 40}], x]
%o A073728 (Magma) I:=[3,4,7]; [n le 3 select I[n] else Self(n-1)+Self(n-2) +Self(n-3): n in [1..40]]; // _Vincenzo Librandi_, Mar 27 2015
%o A073728 (PARI) my(x='x+O('x^40)); Vec((3+x)/(1-x-x^2-x^3)) \\ _G. C. Greubel_, Apr 09 2019
%o A073728 (Sage) ((3+x)/(1-x-x^2-x^3)).series(x, 40).coefficients(x, sparse=False) # _G. C. Greubel_, Apr 09 2019
%Y A073728 Partial sums of A001644.
%Y A073728 Cf. A000073.
%K A073728 easy,nonn
%O A073728 0,1
%A A073728 Mario Catalani (mario.catalani(AT)unito.it), Aug 06 2002