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.

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

Original entry on oeis.org

1, 3, 16
Offset: 1

Views

Author

Vaclav Kotesovec, Sep 02 2012

Keywords

Comments

The next term, if it exists, is greater than 1000000. - Vaclav Kotesovec, Sep 11 2012

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*=3*k*(3*k-1)*(3*k-2)/5;]; seq
    Select[Range[20],IntegerQ[Sum[(3k)!/5^k,{k,#-1}]]&] (* Harvey P. Dale, Apr 07 2019 *)