OFFSET
0,2
COMMENTS
One may generate other sequences by changing the base b.
A permutation of the cubefree numbers (A004709). - Rémy Sigrist, Jul 18 2022
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..6560
FORMULA
If a(bn)=x then a(bn+1)=2x, a(bn+2)=4x, ... a(bn+b-1)=2^b*x. - Robert G. Wilson v, Dec 24 2004
G.f.: (1+2x+4x^2)(1+3x^3+9x^6)(1+5x^9+25x^18)... - Paul Boddington, Jul 21 2005
a(n) = f(n, 1, 1) with f(x, y, z) = if x > 0 then f(floor(x/3), y*prime(z)^(x mod 3), z+1) else y. - Reinhard Zumkeller, Mar 13 2010
EXAMPLE
The first few terms are computed as follows:
n b2 b1 b0 a(n)
0, 0, 0, 0, 1
1, 0, 0, 1, 2
2, 0, 0, 2, 4
3, 0, 1, 0, 3
4, 0, 1, 1, 6
5, 0, 1, 2, 12
MATHEMATICA
primeBase[n_Integer?Positive, base_Integer]/; base>1 := Times @@ (Table[Prime[i], {i, Floor[Log[base, n] + 1], 1, -1}]^IntegerDigits[n, base]); Table[primeBase[n, 3], {n, 59}] (* Robert G. Wilson v, Dec 24 2004 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Orges Leka (oleka(AT)students.uni-mainz.de), Dec 20 2004
EXTENSIONS
More terms from Robert G. Wilson v, Dec 24 2004
STATUS
approved