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!)
A091791 Least multiple of n such that the n-th partial concatenation is a multiple of the n-th odd number (i.e., 2n-1). 2
1, 2, 15, 20, 25, 6, 91, 80, 99, 170, 88, 60, 325, 350, 225, 512, 646, 540, 114, 60, 672, 704, 460, 696, 675, 78, 135, 560, 493, 2010, 589, 992, 2145, 1768, 35, 900, 2072, 1900, 3159, 2680 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
3 divides 12, 5 divides 1215, 7 divides 121520 etc.
MAPLE
A055642 := proc(n) ilog10(n)+ 1; end: Lcat := proc(L) local resul, i ; resul := op(1, L) ; for i from 2 to nops(L) do resul := resul*10^A055642(op(i, L))+op(i, L) ; od ; RETURN(resul) ; end: A091791 := proc(nmax) local a, k, n ; a := [1] ; for n from 2 to nmax do k :=1 ; while Lcat([op(a), k*n]) mod (2*n-1) <> 0 do k := k+1 ; od ; a := [op(a), k*n] ; od; a ; end: A091791(40); # R. J. Mathar, Jul 20 2007
CROSSREFS
Cf. A091792.
Sequence in context: A194542 A076646 A076617 * A281660 A244324 A143660
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Feb 18 2004
EXTENSIONS
More terms from R. J. Mathar, Jul 20 2007
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 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)