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

A360806
a(0) = 1; for n >= 1, a(n) is the least integer k > a(n-1) such that k / A000005(k) = a(n-1).
2
1, 2, 8, 80, 2240, 215040, 77414400, 61931520000, 170930995200000, 1340099002368000000
OFFSET
0,2
EXAMPLE
a(0) = 1.
a(1) = 2 because the least k > 1 such that k / A000005(k) = 1 is k = 2.
a(2) = 8 because the least k > 2 such that k / A000005(k) = 2 is k = 8.
a(3) = 80 because the least k > 8 such that k / A000005(k) = 8 is k = 80.
and so on.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Module[{m = a[n - 1], k}, k = 2*m; While[k != m*DivisorSigma[0, k], k += m]; k]; Array[a, 9, 0] (* Amiram Eldar, Feb 21 2023 *)
CROSSREFS
Sequence in context: A289897 A134054 A323716 * A229865 A134086 A297566
KEYWORD
nonn,more
AUTHOR
Ctibor O. Zizka, Feb 21 2023
EXTENSIONS
a(5)-a(9) from Amiram Eldar, Feb 21 2023
STATUS
approved