OFFSET
1,2
COMMENTS
According to Broughan (2002, 2003, 2006), a(n) is the "upper 4th root of n". The "lower 4th root of n" is sequence A053164. - Petros Hadjicostas, Sep 15 2019
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Henry Bottomley, Some Smarandache-type multiplicative sequences.
Kevin A. Broughan, Restricted divisor sums, Acta Arithmetica, 101(2) (2002), 105-114.
Kevin A. Broughan, Relationship between the integer conductor and k-th root functions, Int. J. Pure Appl. Math. 5(3) (2003), 253-275.
Kevin A. Broughan, Relaxations of the ABC Conjecture using integer k'th roots, New Zealand J. Math. 35(2) (2006), 121-136.
Eric Weisstein's World of Mathematics, Smarandache Ceil Function.
FORMULA
If n is 5th-power-free (i.e., not 32, 64, 128, 243, ...) then a(n) = A007947(n).
Multiplicative with a(p^e) = p^(ceiling(e/4)). - Christian G. Bower, May 16 2005
Sum_{k=1..n} a(k) ~ c * n^2, where c = (zeta(7)/2) * Product_{p prime} (1 - 1/p^2 + 1/p^3 - 1/p^4 + 1/p^5 - 1/p^6) = 0.3528057925... . - Amiram Eldar, Oct 27 2022
MATHEMATICA
f[p_, e_] := p^Ceiling[e/4]; a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* Amiram Eldar, Sep 08 2020 *)
PROG
(PARI) a(n) = my(f=factor(n)); for (i=1, #f~, f[i, 2] = ceil(f[i, 2]/4)); factorback(f); \\ Michel Marcus, Jun 09 2014
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Henry Bottomley, Feb 29 2000
STATUS
approved