login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A162823 Positive numbers k such that 42*k/(42-k) are integers. 6
6, 14, 21, 24, 28, 30, 33, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 51, 54, 56, 60, 63, 70, 78, 84, 91, 105, 126, 140, 168, 189, 238, 294, 336, 483, 630, 924, 1806 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The number k=42 is explicitly included, treating the result of division through zero as an integer.
Row 42 of A191973.
LINKS
MAPLE
for m from 1 to 1806 do if(m=42 or m*42 mod (m-42) = 0)then printf("%d, ", m): fi: od: # Nathaniel Johnston, Jun 22 2011
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
Join[{42}, Select[Range[2000], IntegerQ[(42#)/(42-#)]&]]//Quiet//Sort (* Harvey P. Dale, Mar 14 2020 *)
CROSSREFS
Sequence in context: A371396 A118129 A046712 * A020171 A122784 A244175
KEYWORD
nonn,fini,full,easy
AUTHOR
EXTENSIONS
Keywords fini,full added by R. J. Mathar, Jul 31 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)