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

A162818
Strictly positive numbers n such that (42*n)/(42+n) is an integer.
10
7, 21, 42, 56, 84, 105, 154, 210, 252, 399, 546, 840, 1722
OFFSET
1,1
MATHEMATICA
f[a_, b_]:=(a*b)/(a+b); a=42; lst={}; Do[If[f[a, n]==IntegerPart[f[a, n]], AppendTo[lst, n]], {n, 9!}]; lst
Select[Range[2000], Divisible[42 #, 42 + #] &] (* Harvey P. Dale, May 09 2012 *)
KEYWORD
nonn,fini,full
AUTHOR
EXTENSIONS
Keywords fini and full added by Franklin T. Adams-Watters, Aug 07 2009
STATUS
approved