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.

A283839 Row sums of A283838.

Original entry on oeis.org

1, 3, 6, 12, 24, 42, 76, 136, 240, 424, 753, 1337, 2388, 4280, 7706, 13940, 25332, 46224, 84696, 155786, 287574, 532624, 989554, 1843744, 3444389, 6450369, 12107004, 22771642, 42913116, 81014528, 153199818, 290152952, 550332614, 1045234672, 1987731140
Offset: 8

Views

Author

N. J. A. Sloane, Mar 25 2017

Keywords

Comments

a(n) is odd for n >= 8 and n in { A247375 }. - Alois P. Heinz, Mar 26 2017

Crossrefs

Programs

  • Maple
    b:= proc(n, l, c, k) option remember; `if`(n=0, l,
          b(n-1, 1-l, 1, k)+`if`(c=k-1, 0, b(n-1, l, c+1, k)))
        end:
    a:= proc(n) option remember; `if`(n<8, 0, a(n-1)+
          add(b(n-2*k-1, 0, 1, k), k=3..floor(n/2)-1))
        end:
    seq(a(n), n=8..60);  # Alois P. Heinz, Mar 26 2017
  • Mathematica
    nMax = 60; gf[k_] := gf[k] = x^(2k)(x-x^k)^2 / ((1-x)(1-x^k)(1-2x+x^k)) + O[x]^(nMax+1); a[n_] := Sum[SeriesCoefficient[gf[k], n], {k, 3, Floor[ n/2] - 1}]; Table[a[n], {n, 8, nMax}] (* Jean-François Alcover, Apr 05 2017 *)

Extensions

More terms from Alois P. Heinz, Mar 26 2017