OFFSET
1,2
COMMENTS
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..1000
EXAMPLE
{h^6, h >=1} = {1, 64, 729, 4096, 15625, 46656, 117649, ...};
{2*k^6, k >=1} = {2, 128, 1458, 8192, 31250, 93312, ...};
so the union is {1, 2, 64, 128, 729, 1458, 4096, 8192, 15625, ...}.
MATHEMATICA
z = 120; s = Table[h^6, {h, 1, z}]; t = Table[2 k^6, {k, 1, z}]; v = Union[s, t]
Flatten[Table[{n^6, 2n^6}, {n, 20}]]//Union (* Harvey P. Dale, Dec 19 2015 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 21 2014
STATUS
approved