OFFSET
1,2
COMMENTS
First differs from A322791 and A383761 at rows 16, 48, 80, 81, 112, 144, 162, ... and from A361255 at rows 256, 768, 1280, 1792, ... .
An exponential infinitary divisor d of a number n is a divisor d of n such that for every prime divisor p of n, the p-adic valuation of d is an infinitary divisor of the p-adic valuation of n.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..15379 (first 10000 rows, flattened)
Andrew V. Lelechenko, Exponential and infinitary divisors, Ukrainian Mathematical Journal, Vol. 68, No. 8 (2017), pp. 1222-1237; arXiv preprint, arXiv:1405.7597 [math.NT], 2014.
EXAMPLE
The first 10 rows are:
1
2
3
2, 4
5
6
7
2, 8
3, 9
10
MATHEMATICA
infDivQ[n_, 1] = True; infDivQ[n_, d_] := n > 0 && d > 0 && BitAnd[IntegerExponent[n, First /@ (f = FactorInteger[d])], (e = Last /@ f)] == e;
expInfDivQ[n_, d_] := Module[{f = FactorInteger[n]}, And @@ MapThread[infDivQ, {f[[;; , 2]], IntegerExponent[d, f[[;; , 1]]]}]]; expInfDivs[1] = {1};
expInfDivs[n_] := Module[{d = Rest[Divisors[n]]}, Select[d, expInfDivQ[n, #] &]];
Table[expInfDivs[n], {n, 1, 70}] // Flatten
CROSSREFS
KEYWORD
nonn,tabf,easy
AUTHOR
Amiram Eldar, May 09 2025
STATUS
approved
