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!)
A109744 Least multiple of n such that every partial concatenation followed by a 7 is prime. 2
1, 2, 3, 4, 5, 12, 42, 48, 9, 90, 22, 96, 299, 154, 60, 288, 918, 1026, 380, 60, 2184, 616, 23, 120, 175, 2964, 135, 980, 319, 1230, 2015, 2464, 1056, 272, 2310, 2448, 111, 11628, 2301, 8800, 7134, 252, 4730, 3036, 1665, 3634, 1551, 2016, 147, 4950 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
17, 127, 1237, 12347, 123457, ... etc. are all prime.
MAPLE
Lcat := proc(L) local a, i; a := 0 ; for i from 1 to nops(L) do a := a*10^(max(1, ilog10(op(i, L))+1))+op(i, L) ; od: RETURN(a) ; end: A109744 := proc(nmax) local a, k, n; a := [1] ; while nops(a) < nmax do n := nops(a)+1 ; k := 1; while not isprime(Lcat([op(a), k*n, 7]) ) do k := k+1 ; od ; a := [op(a), k*n] ; od: RETURN(a) ; end: op(A109744(50)) ; # R. J. Mathar, Aug 15 2007
CROSSREFS
Sequence in context: A069469 A175807 A165303 * A065635 A325693 A367140
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 03 2005
EXTENSIONS
More terms from R. J. Mathar, Aug 15 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 May 10 17:06 EDT 2024. Contains 372388 sequences. (Running on oeis4.)