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!)
A344181 Numbers such that repeated division by their largest factorial divisor (as long as such a divisor larger than one exists) eventually yields 1. 4
1, 2, 4, 6, 8, 12, 16, 24, 32, 36, 48, 64, 96, 120, 128, 144, 192, 240, 256, 288, 384, 480, 512, 576, 720, 768, 864, 960, 1024, 1152, 1440, 1536, 1920, 2048, 2304, 2880, 3072, 3456, 3840, 4096, 4320, 4608, 5040, 5760, 6144, 6912, 7680, 8192, 8640, 9216, 10080 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers whose closure under map x -> A076934(x) contains 1.
Largest factorial divisor of n is A000142(A055874(n)).
These numbers could be called "greedy Jordan-Polya numbers", as their presence in A001013 can be determined by a simple greedy algorithm.
LINKS
EXAMPLE
12 = 2^2 * 3 is present, as the largest factorial that divides 12 is A000142(3) = 6, and then 12/6 = 2 is also divisible by a factorial, and then 2/A000142(2) = 1.
MATHEMATICA
fctdiv[n_] := Module[{m = 1, k = 1}, While[Divisible[n, m], k++; m *= k]; m /= k; n/m]; Select[Range[10^4], FixedPoint[fctdiv, #] == 1 &] (* Amiram Eldar, May 22 2021 *)
CROSSREFS
Positions of ones in A093411.
Subsequence of A001013. A344179 gives the terms not present here.
Cf. also A025487 (analogous sequence for primorials).
Sequence in context: A001013 A115746 A025610 * A242101 A131117 A332290
KEYWORD
nonn
AUTHOR
Antti Karttunen, May 18 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 25 10:34 EDT 2024. Contains 371967 sequences. (Running on oeis4.)