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!)
A029145 Expansion of 1/((1-x^2)(1-x^3)(1-x^5)(1-x^8)). 2
1, 0, 1, 1, 1, 2, 2, 2, 4, 3, 5, 5, 6, 7, 8, 9, 11, 11, 14, 14, 17, 18, 20, 22, 25, 26, 30, 31, 35, 37, 41, 43, 48, 50, 55, 58, 63, 66, 72, 75, 82, 85, 92, 96, 103, 108, 115, 120, 129, 133, 143, 148, 157, 164, 173, 180 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Number of partitions of n into parts 2, 3, 5, and 8. - Joerg Arndt, Jul 07 2013
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,1,1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,-1).
FORMULA
a(n) = floor((2*n^3+54*n^2+435*n+2435+45*(n+1)*(-1)^n)/2880+1/4*(((-1)^n+floor((n+1)/4)-floor(n/4))*(-1)^floor(n/4))). - Tani Akinari, Jul 07 2013
PROG
(Haskell)
import Data.MemoCombinators (memo2, integral)
a029145 n = a029145_list !! n
a029145_list = map (p' 0) [0..] where
p' = memo2 integral integral p
p _ 0 = 1
p 4 _ = 0
p k m | m < parts !! k = 0
| otherwise = p' k (m - parts !! k) + p' (k + 1) m
parts = [2, 3, 5, 8]
-- Reinhard Zumkeller, Dec 09 2015
CROSSREFS
Cf. A028290.
Sequence in context: A237598 A138241 A234615 * A238999 A097986 A368689
KEYWORD
nonn,easy
AUTHOR
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 April 25 11:06 EDT 2024. Contains 371967 sequences. (Running on oeis4.)