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, ...};
{3*k^6, k >=1} = {3, 192, 2187, 12288, 46875, 139968, ...};
so the ordered union is {1, 3, 64, 192, 729, 2187, 4096, 12288, ...}
MATHEMATICA
z = 120; s = Table[h^6, {h, 1, z}]; t = Table[3 k^6, {k, 1, z}]; v = Union[s, t]
PROG
(Magma) /* By ordered union */ &cat[[h^6, 3*h^6]: h in [1..20]]; // Vincenzo Librandi, Oct 23 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 21 2014
STATUS
approved