The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A069525 Smallest multiple of n with digit sum = 6, or 0 if no such number exists, e.g. a(9k)= 0. 7

%I #14 Sep 04 2019 23:58:13

%S 6,6,6,24,15,6,42,24,0,60,33,24,312,42,15,240,51,0,114,60,42,132,1104,

%T 24,150,312,0,420,1131,60,1023,2112,33,204,105,0,222,114,312,240,123,

%U 42,1032,132,0,1104,141,240,12201,150,51,312,1113,0,330,4200,114,4002,2301

%N Smallest multiple of n with digit sum = 6, or 0 if no such number exists, e.g. a(9k)= 0.

%C In addition to those divisible by 9, all numbers n divisible by 239, 271 or 803 have a(n)=0. - _Robert Israel_, Sep 04 2019

%H Robert Israel, <a href="/A069525/b069525.txt">Table of n, a(n) for n = 1..2500</a>

%F a(n) = n*A088395(n). - _R. J. Mathar_, Aug 06 2019

%p N:= 1000: # to get a(1)..a(N)

%p nextL:= proc(L)

%p local m,q,Lp;

%p for m from 1 do

%p if L[m] > 0 then

%p if m = LinearAlgebra:-Dimension(L) then return <5,0$(m-1),1>

%p else Lp:= L;

%p Lp[1]:= L[m]-1;

%p Lp[2..m]:= 0;

%p Lp[m+1]:= L[m+1]+1;

%p return Lp;

%p fi

%p fi

%p od;

%p end proc:

%p nogo:= proc(n) local m,a2,a5,S,S2,S3,i,j;

%p a2:= padic:-ordp(n,2);

%p a5:= padic:-ordp(n,5);

%p m:= numtheory:-order(10,n/(2^a2*5^a5))+max(a2,a5);

%p S:= {seq(10^i mod n, i=0..m-1)};

%p S2:= {seq(seq(S[i]+S[j] mod n,j=1..i),i=1..nops(S))};

%p S3:= {seq(seq(S[i]+ S2[j] mod n, j=1..nops(S2)),i=1..nops(S))};

%p evalb(S3 intersect map(t -> -t mod n, S3) = {});

%p end proc:

%p Agenda:= remove(t -> (t mod 9=0 or t mod 239=0 or t mod 271=0 or t mod 803=0, {$1..N}):

%p L:= <6>: x:= 6:

%p A:= Vector(N):

%p while Agenda <> {} and x < 10^20 do

%p x:= add(L[i]*10^(i-1),i=1..LinearAlgebra:-Dimension(L));

%p found,Agenda:= selectremove(t -> x mod t = 0, Agenda);

%p if found <> {} then

%p A[convert(found,list)]:= x;

%p fi;

%p L:= nextL(L);

%p od:

%p Agenda:= remove(nogo,Agenda);

%p if Agenda <> {} then printf("Values not found for %a\n",Agenda) fi;

%p convert(A,list); # _Robert Israel_, Sep 04 2019

%t Array[If[AnyTrue[Mod[#, {9, 239, 271, 803}], # == 0 &], 0, Block[{k = 1}, While[Total@ IntegerDigits[k #] != 6, k++]; k #]] &, 59] (* _Michael De Vlieger_, Sep 04 2019 *)

%Y Cf. A062220, A069521, A069522, A069523, A069524.

%K base,nonn

%O 1,1

%A _Amarnath Murthy_, Apr 01 2002

%E More terms from _Ray Chandler_, Jul 30 2003

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 May 12 19:25 EDT 2024. Contains 372494 sequences. (Running on oeis4.)