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.

A014605 Partial sums of A001935; at one time this was conjectured to agree with A007478.

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 5, 8, 12, 18, 27, 39, 55, 77, 106, 144, 194, 258, 340, 445, 577, 743, 951, 1209, 1529, 1924, 2408, 3000, 3722, 4598, 5658, 6938, 8477, 10323, 12533, 15169, 18307, 22035, 26451, 31673, 37836, 45092, 53620, 63626, 75342, 89038, 105024, 123648
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    b:= proc(n) option remember; `if`(n=0, 1, add(b(n-j)*add(`if`(
          irem(d, 4)=0, 0, d), d=numtheory[divisors](j)), j=1..n)/n)
        end:
    a:= proc(n) option remember; `if`(n<4, 1, a(n-1)+b(n-4)) end:
    seq(a(n), n=0..60);  # Alois P. Heinz, Jul 21 2018
  • Mathematica
    QP = QPochhammer; Join[{1, 0, 0, 0}, CoefficientList[QP[q^4]/QP[q]+O[q]^50, q]] // Accumulate (* Jean-François Alcover, Jul 21 2018 *)

Formula

a(n) = a(n-1) + A001935(n-4), n>3. - R. J. Mathar, Mar 06 2016