login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A077180
Smallest concatenation of integers starting from 1 that is a multiple of the n-th prime.
9
12, 12, 12345, 1234567891011
OFFSET
1,1
COMMENTS
The next term (a(5)) has 210 digits. - Harvey P. Dale, Aug 15 2022
MATHEMATICA
sci[p_]:=Module[{k=2}, While[!Divisible[FromDigits[Flatten[IntegerDigits/@ Range[ k]]], p], k++]; FromDigits[Flatten[IntegerDigits/@Range[k]]]]; sci/@Prime[ Range[ 5]] (* Harvey P. Dale, Aug 15 2022 *)
CROSSREFS
Sequence in context: A222298 A122253 A156456 * A105745 A020511 A008939
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 01 2002
EXTENSIONS
Next term is too large to include, but may be deduced from A077182. - Sascha Kurz, Jan 30 2003
Corrected by Sascha Kurz, Jan 30 2003
STATUS
approved