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.

A214253 Number of compositions of n where differences between neighboring parts are in {-2,0,2}.

Original entry on oeis.org

1, 1, 2, 2, 5, 5, 10, 10, 21, 22, 42, 47, 87, 103, 179, 224, 380, 491, 802, 1074, 1721, 2354, 3696, 5157, 7995, 11305, 17328, 24778, 37680, 54320, 82071, 119076, 179061, 261046, 391087, 572275, 854975, 1254578, 1870298, 2750361, 4093539, 6029538, 8962963
Offset: 0

Views

Author

Alois P. Heinz, Jul 08 2012

Keywords

Examples

			a(5) = 5: [5], [3,1,1], [1,3,1], [1,1,3], [1,1,1,1,1].
a(6) = 10: [6], [4,2], [3,3], [3,1,1,1], [2,4], [2,2,2], [1,3,1,1], [1,1,3,1], [1,1,1,3], [1,1,1,1,1,1].
		

Crossrefs

Column k=2 of A214246.

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n<1 or i<1, 0,
          `if`(n=i, 1, add(b(n-i, i+j), j=[-2, 0, 2])))
        end:
    a:= n-> `if`(n=0, 1, add(b(n, j), j=1..n)):
    seq(a(n), n=0..60);
  • Mathematica
    b[n_, i_] := b[n, i] = If[n < 1 || i < 1, 0, If[n == i, 1, Sum[b[n-i, i+j], {j, {-2, 0, 2}}]]]; a[n_] := If[n == 0, 1, Sum[b[n, j], {j, 1, n}]]; Table[a[n], {n, 0, 60}] (* Jean-François Alcover, Nov 06 2014, after Alois P. Heinz *)

Formula

a(n) ~ c * d^n, where d = 1.480632733359847628849916564959539381483927975663120268887..., c = 0.6193575859000249187293498067457554927448225891538342... . - Vaclav Kotesovec, Sep 02 2014