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!)
A343816 a(n) is the least start of exactly n consecutive odd numbers that are cyclic numbers (A003277). 1
23, 41, 177, 1, 11, 877, 2387, 695 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence is restricted to odd cyclic numbers since 2 is the only even cyclic number.
This sequence is finite, with 8 terms; any run of 9 consecutive odd numbers will contain a multiple of 9, and this multiple of 9 cannot be cyclic. - Rémy Sigrist, May 10 2021
LINKS
EXAMPLE
a(1) = 23 since 23 is cyclic, but 21 and 25 are not.
a(2) = 41 since 41 and 43 are cyclic, but 39 and 45 are not.
MATHEMATICA
cycQ[n_] := CoprimeQ[n, EulerPhi[n]]; seq[m_] := Module[{s = Table[0, {m}], c = 0, n = 1, n1, d}, While[c < m, n1 = n; If[cycQ[n], While[n1 += 2; cycQ[n1]]; d = (n1 - n)/2; If[d <= m && s[[d]] == 0, c++; s[[d]] = n]]; n = n1 + 2]; s]; seq[8]
CROSSREFS
Sequence in context: A114379 A345099 A106969 * A304390 A309533 A331342
KEYWORD
nonn,fini,full
AUTHOR
Amiram Eldar, Apr 30 2021
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)