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!)
A225613 The largest n-digit number whose first k digits are divisible by the k-th prime for k = 1..n. 1
8, 87, 875, 8757, 87571, 875719, 8757193, 87571931, 875719319, 8757193191 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
There are 10 terms in the series; the 10-digit number 8757193191 is the largest number to satisfy the requirements.
LINKS
EXAMPLE
There are four one-digit numbers divisible by the first prime (2) and the largest is 8, so a(1)=8.
For two-digit numbers, the second digit must make it divisible by 3, which gives 87 as the largest to satisfy the requirement, so a(2)=87.
MATHEMATICA
a=Table[j, {j, 2, 8, 2}]; r=2; t={}; While[!a == {}, n=Length[a]; nmax=Last[a]; k=1; b={}; While[!k>n, z0=a[[k]]; Do[z=10*z0+j; If[Mod[z, Prime[r]]==0, b=Append[b, z]], {j, 0, 9}]; k++]; AppendTo[t, nmax]; a=b; r++]; t
CROSSREFS
Subsequence of A079206.
Sequence in context: A200767 A222513 A307822 * A358982 A243922 A239753
KEYWORD
nonn,base,fini,full
AUTHOR
Shyam Sunder Gupta, Aug 04 2013
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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)