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

A147773
a(n) = round((n^n)^(1/3)).
1
1, 2, 3, 6, 15, 36, 94, 256, 729, 2154, 6583, 20736, 67156, 223150, 759375, 2642246, 9387369, 34012224, 125537306, 471556032, 1801088541, 6989288907, 27536796143, 110075314176, 446169698824, 1832746290156, 7625597484987, 32122422687591
OFFSET
1,2
LINKS
FORMULA
a(n) = A105209(A000312(n)). - Michel Marcus, Aug 19 2016
MATHEMATICA
lst={}; Do[AppendTo[lst, Round[(n^n)^(1/3)]], {n, 40}]; lst
PROG
(Python)
from gmpy2 import iroot_rem
def A147773(n):
i, j = iroot_rem(n**n, 3)
return int(i+int(8*j >= 6*i*(2*i+1)+1)) # Chai Wah Wu, Aug 16 2016
CROSSREFS
Sequence in context: A369628 A053561 A237585 * A006403 A129960 A115098
KEYWORD
nonn
AUTHOR
STATUS
approved