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.

A216043 Numbers k such that Sum_{j=1..k-1} (2j)!/3^j is an integer.

Original entry on oeis.org

1, 4, 12, 105, 112, 322, 8807, 8831
Offset: 1

Views

Author

Vaclav Kotesovec, Aug 30 2012

Keywords

Comments

Next term > 2000000.

Crossrefs

Programs

  • Mathematica
    seq={}; sum=0; fak=1; k=0; While[k<10000, sum+=fak; If[Denominator[sum]==1, AppendTo[seq,k+1]]; k++; fak*=2*k*(2k-1)/3;]; seq