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!)
A069861 Numbers n that divide the concatenation of next n numbers. 3

%I #4 Dec 05 2013 19:55:18

%S 1,2,3,5,6,9,10,11,12,15,18,20,21,22,25,27,30,33,36,39,42,44,45,50,54,

%T 56,60,68,72,75,90,98,100,104,108,110,111,114,120,125,126,130,132,135,

%U 140,148,150,154,155,156,162,168,180,182,185,196,198,200,205,210,216

%N Numbers n that divide the concatenation of next n numbers.

%e 9 divides 101112131415161718 hence is a member.

%t f[n_] := Block[{j = 0, k = n + 1}, While[k < 2n + 1, j = ToExpression[ StringJoin[ ToString[j], ToString[k]]]; k++ ]; j]; Select[ Range[300], IntegerQ[ f[ # ] / # ] & ]

%Y Cf. A069860, A069862.

%K base,nonn

%O 1,2

%A _Amarnath Murthy_, Apr 18 2002

%E Edited, corrected and extended by _Robert G. Wilson v_

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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)