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!)
A329244 Sum of every third term of the Padovan sequence A000931. 1
1, 2, 3, 5, 10, 22, 50, 115, 266, 617, 1433, 3330, 7740, 17992, 41825, 97230, 226031, 525457, 1221538, 2839730, 6601570, 15346787, 35676950, 82938845, 192809421, 448227522, 1042002568, 2422362080, 5631308625, 13091204282, 30433357675, 70748973085, 164471408186 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{i=0..n} A000931(3*i).
a(n) = A000931(3n+2)+1.
From Colin Barker, Nov 09 2019: (Start)
G.f.: (1 - 2*x) / ((1 - x)*(1 - 3*x + 2*x^2 - x^3)).
a(n) = 4*a(n-1) - 5*a(n-2) + 3*a(n-3) - a(n-4) for n>3.
(End)
EXAMPLE
For n = 3, a(n) = 1+1+1+2 = 5.
PROG
(Python)
p = lambda x:[1, 0, 0][x] if x<3 else p(x-2)+p(x-3)
a = lambda x:sum(p(3*i) for i in range(x+1))
(PARI) Vec((1 - 2*x) / ((1 - x)*(1 - 3*x + 2*x^2 - x^3)) + O(x^35)) \\ Colin Barker, Nov 09 2019
CROSSREFS
Partial sums of A034943.
Cf. A000931.
Sequence in context: A293842 A014844 A307264 * A173271 A326574 A280019
KEYWORD
nonn,easy
AUTHOR
David Nacin, Nov 09 2019
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 March 29 08:08 EDT 2024. Contains 371265 sequences. (Running on oeis4.)