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”).

A095231
a(1)=1; a(n)=least positive integer such that the concatenation of all terms, including a(n), is == 1 (mod n).
2
1, 1, 2, 1, 1, 1, 4, 5, 3, 1, 14, 9, 7, 7, 1, 3, 25, 5, 25, 21, 2, 9, 32, 1, 26, 5, 5, 17, 33, 1, 15, 21, 30, 37, 11, 33, 15, 27, 15, 21, 33, 51, 34, 53, 21, 29, 3, 13, 20, 1, 39, 57, 19, 35, 11, 29, 29, 31, 59, 21, 55, 51, 29, 7, 26, 75, 34, 49, 25, 31, 47, 3, 43, 77, 6, 45, 62, 25
OFFSET
1,3
COMMENTS
Conjecture: Every natural number occurs infinitely many times.
First differs from A140274 at a(17)=25. - Owen Whitby, May 20 2008
LINKS
EXAMPLE
a(6) =1: 112111 mod 6 == 1.
MATHEMATICA
digs={1}; Print[1]; Do[notFound=True; a=1; While[notFound, k=FromDigits[dk=digs~Join~IntegerDigits[a]]; If[Mod[k, n]==1, digs=dk; Print[a]; notFound=False, a++ ]], {n, 2, 200}] - Owen Whitby, May 20 2008
CROSSREFS
Cf. A140274.
Sequence in context: A284414 A355614 A140274 * A303697 A362827 A342413
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Jun 11 2004
EXTENSIONS
Edited and extended by Owen Whitby, May 20 2008
STATUS
approved