# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a019555 Showing 1-1 of 1 %I A019555 #64 Oct 19 2024 15:57:32 %S A019555 1,2,3,2,5,6,7,2,3,10,11,6,13,14,15,4,17,6,19,10,21,22,23,6,5,26,3,14, %T A019555 29,30,31,4,33,34,35,6,37,38,39,10,41,42,43,22,15,46,47,12,7,10,51,26, %U A019555 53,6,55,14,57,58,59,30,61,62,21,4,65,66,67,34,69,70,71,6,73,74,15,38,77,78 %N A019555 Smallest number whose cube is divisible by n. %C A019555 This can be thought as an "upper 3rd root" of a positive integer. Upper k-th roots were studied by Broughan (2002, 2003, 2006). The sequence of "lower 3rd root" of positive integers is given by A053150. - _Petros Hadjicostas_, Sep 15 2019 %H A019555 Peter Kagey, Table of n, a(n) for n = 1..10000 %H A019555 Henry Bottomley, Some Smarandache-type multiplicative sequences. %H A019555 Kevin A. Broughan, Restricted divisor sums, Acta Arithmetica, 101(2) (2002), 105-114. %H A019555 Kevin A. Broughan, Relationship between the integer conductor and k-th root functions, Int. J. Pure Appl. Math. 5(3) (2003), 253-275. %H A019555 Kevin A. Broughan, Relaxations of the ABC Conjecture using integer k'th roots, New Zealand J. Math. 35(2) (2006), 121-136. %H A019555 Vaclav Kotesovec, Graph - the asymptotic ratio (1000000 terms). %H A019555 Ana Rechtman, Mai 2021, 4e défi, Images des Mathématiques, CNRS, 2021 (in French). %H A019555 Florentin Smarandache, Collected Papers, Vol. II, Tempus Publ. Hse, Bucharest, 1996. %H A019555 Eric Weisstein's World of Mathematics, Smarandache Ceil Function. %F A019555 Replace any cubic factors in n by their cube roots. %F A019555 a(n) = n/A000189(n). %F A019555 Multiplicative with a(p^e) = p^ceiling(e/3). - _R. J. Mathar_, May 29 2011 %F A019555 From _Vaclav Kotesovec_, Aug 30 2021: (Start) %F A019555 Dirichlet g.f.: zeta(3*s-1) * Product_{p prime} (1 + p^(1 - s) + p^(1 - 2*s)). %F A019555 Dirichlet g.f.: zeta(3*s-1) * zeta(s-1) * Product_{p prime} (1 - p^(2 - 3*s) + p^(1 - 2*s) - p^(2 - 2*s)). %F A019555 Sum_{k=1..n} a(k) ~ c * zeta(5) * n^2 / 2, where c = Product_{p prime} (1 - 1/p^2 + 1/p^3 - 1/p^4) = 0.684286924186862318141968725791218083472312736723163777284618226290055... (End) %p A019555 f:= n -> mul(t[1]^ceil(t[2]/3), t = ifactors(n)[2]): %p A019555 map(f, [$1..100]); # _Robert Israel_, Sep 22 2015 %t A019555 cubes=Range[85]^3; Table[Position[Divisible[cubes,i],True,1,1][[1,1]],{i,85}] (* _Harvey P. Dale_, Jan 12 2011 *) %t A019555 f[p_, e_] := p^Ceiling[e/3]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Jan 06 2024 *) %o A019555 (PARI) a(n)=my(r=1);while(r^3%n!=0,r++);r \\ _Anders Hellström_, Sep 22 2015 %o A019555 (PARI) for(n=1, 100, print1(direuler(p=2, n, (1 + p*X + p*X^2)/(1 - p*X^3))[n], ", ")) \\ _Vaclav Kotesovec_, Aug 30 2021 %o A019555 (PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, f[i,1]^ceil(f[i,2]/3));} \\ _Amiram Eldar_, Jan 06 2024 %o A019555 (Sage) [prod([t[0]^(ceil(t[1]/3)) for t in factor(n)]) for n in range(1,79)] # _Danny Rorabaugh_, Sep 22 2015 %o A019555 (Python 3.8+) %o A019555 from math import prod %o A019555 from sympy import factorint %o A019555 def A019555(n): return prod(p**((q%3 != 0)+(q//3)) for p, q in factorint(n).items()) # _Chai Wah Wu_, Aug 18 2021 %Y A019555 Cf. A000188 (inner square root), A019554 (outer square root), A053150 (inner 3rd root), A053164 (inner 4th root), A053166 (outer 4th root), A015052 (outer 5th root), A015053 (outer 6th root). %Y A019555 Cf. A000189, A015050. %K A019555 nonn,easy,mult %O A019555 1,2 %A A019555 R. Muller %E A019555 Corrected and extended by _David W. Wilson_ # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE