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.

A152479 Products of partition numbers of Fibonacci numbers.

Original entry on oeis.org

1, 1, 1, 2, 6, 42, 924, 93324, 73912608, 909864204480, 410599878740916480, 20528320742539954765344000, 462721784193718931971550165554080000, 28136323479948516473366521258111350797954332320000
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    A072214:= [seq(combinat:-numbpart(combinat:-fibonacci(n)),n=1..20)]:
    seq(mul(A072214[i],i=1..n-1),n=1..20); # Robert Israel, Oct 20 2016
  • Mathematica
    f[n_]:=Fibonacci[n];p[n_]:=PartitionsP[f[n]];a[n_]:=Product[p[i],{i,1,n}];

Formula

a(n) = Prod_{1<=j<=n-1} A072214(j). - Robert Israel, Oct 20 2016