A001292 Concatenations of cyclic permutations of initial positive integers.
1, 12, 21, 123, 231, 312, 1234, 2341, 3412, 4123, 12345, 23451, 34512, 45123, 51234, 123456, 234561, 345612, 456123, 561234, 612345, 1234567, 2345671, 3456712, 4567123, 5671234, 6712345, 7123456
Offset: 1
Links
- John Cerkan, Table of n, a(n) for n = 1..10000
- Marco Ripà, On some open problems concerning perfect powers, ResearchGate (2022).
- Florentin Smarandache, Only Problems, Not Solutions!, Unsolved Problem #16, p. 18.
Programs
-
Mathematica
Sort@ Flatten@ Table[ FromDigits[ Join @@ IntegerDigits /@ RotateLeft[Range[n], i - 1]], {n, 11}, {i, n}] (* Giovanni Resta, Mar 21 2017 *)
-
Python
from itertools import count, islice def A001292gen(): s = [] for i in count(1): s.append(str(i)) yield from sorted(int("".join(s[j:]+s[:j])) for j in range(i)) print(list(islice(A001292gen(), 46))) # Michael S. Branicky, Jul 01 2022
Comments