OFFSET
1,1
REFERENCES
Amarnath Murthy
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
38 is neither divisible by 3 nor 8 nor 11 (i.e. 3+8).
MATHEMATICA
test1[n_] := Module[{dig = IntegerDigits[n]}, Union[Table[IntegerQ[n/dig[[i]]], {i, Length[dig]}]]] == {False}; test2[n_] := Module[{dig = IntegerDigits[n]}, Not[IntegerQ[n/Sum[dig[[i]], {i, Length[dig]}]]]]; Table[If[test1[n] && test2[n], n, 0], {n, 200}] // Union // Rest [From José María Grau Ribas, Feb 17 2010]
ndQ[n_]:=Module[{idn=IntegerDigits[n]}, FreeQ[idn, 0]&&NoneTrue[n/ Join[ idn, {Total[idn]}], IntegerQ]]; Select[Range[2000], ndQ] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Oct 19 2016 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Meenakshi Srikanth (menakan_s(AT)yahoo.com), Apr 30 2003
EXTENSIONS
More terms from Harvey P. Dale, Oct 19 2016
STATUS
approved