OFFSET
1,1
COMMENTS
The number k=30 is explicitly included, treating the result of division through zero as an integer.
Row 30 of A191973.
MAPLE
for m from 1 to 930 do if(m=30 or m*30 mod (m-30) = 0)then printf("%d, ", m): fi: od: # Nathaniel Johnston, Jun 22 2011
MATHEMATICA
f[a_, b_]:=(a*b)/(a-b); a=30; lst={}; Do[If[f[a, n]==IntegerPart[f[a, n]], AppendTo[lst, n]], {n, 9!}]; lst
CROSSREFS
KEYWORD
nonn,fini,full,easy
AUTHOR
Vladimir Joseph Stephan Orlovsky, Jul 13 2009
EXTENSIONS
Keywords fini,full added by R. J. Mathar, Jul 31 2009
STATUS
approved