A249097 Ordered union of the sets {h^6, h >=1} and {3*k^6, k >=1}.
1, 3, 64, 192, 729, 2187, 4096, 12288, 15625, 46656, 46875, 117649, 139968, 262144, 352947, 531441, 786432, 1000000, 1594323, 1771561, 2985984, 3000000, 4826809, 5314683, 7529536, 8957952, 11390625, 14480427, 16777216, 22588608, 24137569, 34012224, 34171875
Offset: 1
Examples
{h^6, h >=1} = {1, 64, 729, 4096, 15625, 46656, 117649, ...}; {3*k^6, k >=1} = {3, 192, 2187, 12288, 46875, 139968, ...}; so the union is {1, 3, 64, 192, 729, 2187, 4096, 12288, ...}
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1000
Programs
-
PARI
upto(n)=setunion(apply(k->k^6, [1..sqrtnint(n,6)]), apply(k->3*k^6, [1..sqrtnint(n\3,6)])) \\ Andrew Howroyd, Feb 18 2025
Comments