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!)
A343012 Lexicographically earliest sequence of distinct numbers whose partial products have mutually distinct exponents in their prime factorization (A130091). 3
1, 2, 4, 3, 6, 5, 8, 9, 10, 7, 12, 15, 14, 11, 16, 18, 20, 21, 22, 13, 24, 25, 27, 28, 30, 32, 33, 26, 17, 35, 36, 40, 42, 44, 39, 34, 19, 45, 48, 49, 50, 54, 55, 52, 51, 38, 23, 56, 60, 63, 64, 66, 65, 68, 57, 46, 29, 70, 72, 75, 77, 78, 80, 81, 84, 85, 76, 69 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Is this sequence a permutation of the positive integers?
LINKS
EXAMPLE
The first partial products are:
1
1 * 2 = 2 = 2^1
1 * 2 * 4 = 8 = 2^3
1 * 2 * 4 * 3 = 24 = 2^3 * 3^1
1 * 2 * 4 * 3 * 6 = 144 = 2^4 * 3^2
MATHEMATICA
q[n_] := UnsameQ @@ FactorInteger[n][[;; , 2]]; seq = {1}; prod = 1; Do[k = 1; While[MemberQ[seq, k] || ! q[k*prod], k++]; AppendTo[seq, k]; prod *= k, {100}]; seq
CROSSREFS
Sequence in context: A234519 A289726 A308598 * A143692 A337116 A338618
KEYWORD
nonn,look
AUTHOR
Amiram Eldar, Apr 02 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 16 11:08 EDT 2024. Contains 371711 sequences. (Running on oeis4.)