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”).

A112818
Numbers k such that lcm(1,2,3,...,k)/13 equals the denominator of the k-th harmonic number H(k).
12
156, 157, 158, 159, 160, 161, 27380, 27381, 27382, 27383, 27384, 27385, 27386, 27387, 27388, 27389, 27390, 27391, 27392, 27393, 27394, 27395, 27396, 27397, 27398, 27399, 27400, 27401, 27402, 27403, 27404, 27405, 27406, 27407, 27408
OFFSET
1,1
COMMENTS
When 13 occurs in A110566.
LINKS
MATHEMATICA
a = h = 1; t = {}; Do[a = LCM[a, n]; h = h + 1/n; b = a/Denominator[h]; If[b == 13, AppendTo[t, n]], {n, 27408}]; t
With[{tk=Table[{LCM@@Range[k]/13, Denominator[HarmonicNumber[k]]}, {k, 28000}]}, Position[ tk, _?(#[[1]]==#[[2]]&), 1, Heads->False]]//Flatten (* Harvey P. Dale, Apr 02 2022 *)
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 17 2005
EXTENSIONS
Definition corrected by Jinyuan Wang, May 03 2020
STATUS
approved