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!)
A290808 Number of partitions of n into distinct Pell parts (A000129). 3
1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0
COMMENTS
All terms are 0 or 1. - Robert Israel, Aug 16 2017
LINKS
Eric Weisstein's World of Mathematics, Pell Number
FORMULA
G.f.: Product_{k>=1} (1 + x^A000129(k)).
EXAMPLE
a(8) = 1 because we have [5, 2, 1].
MAPLE
N:= 200: # to get a(0) to a(N)
Pell:= gfun:-rectoproc({a(0)=0, a(1)=1, a(n+1)=2*a(n)+a(n-1)}, a(n), remember):
G:= 1:
for k from 1 while Pell(k) <= N do G:= G*(1+x^Pell(k)) od:
seq(coeff(G, x, n), n=0..N); # Robert Israel, Aug 16 2017
MATHEMATICA
CoefficientList[Series[Product[(1 + x^Fibonacci[k, 2]), {k, 1, 15}], {x, 0, 108}], x]
CROSSREFS
Sequence in context: A328308 A257196 A176137 * A364252 A190239 A120529
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 11 2017
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 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)