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

A162817
Positive numbers n such that 40*n/(40+n) are integers.
11
10, 24, 40, 60, 120, 160, 280, 360, 760, 1560
OFFSET
1,1
MATHEMATICA
f[a_, b_]:=(a*b)/(a+b); a=40; lst={}; Do[If[f[a, n]==IntegerPart[f[a, n]], AppendTo[lst, n]], {n, 9!}]; lst
Select[Range[1600], IntegerQ[(40#)/(40+#)]&] (* Harvey P. Dale, Oct 11 2011 *)
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
EXTENSIONS
Keywords fini,full added by R. J. Mathar, Jul 31 2009
STATUS
approved