login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A216149
Numbers k such that Sum_{j=1..k-1} (3*j)!/5^j is an integer.
0
OFFSET
1,2
COMMENTS
The next term, if it exists, is greater than 1000000. - Vaclav Kotesovec, Sep 11 2012
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 *)
CROSSREFS
KEYWORD
nonn,more,bref
AUTHOR
Vaclav Kotesovec, Sep 02 2012
STATUS
approved