login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A338854
Product of the nonzero digits of (n written in base 4).
1
1, 1, 2, 3, 1, 1, 2, 3, 2, 2, 4, 6, 3, 3, 6, 9, 1, 1, 2, 3, 1, 1, 2, 3, 2, 2, 4, 6, 3, 3, 6, 9, 2, 2, 4, 6, 2, 2, 4, 6, 4, 4, 8, 12, 6, 6, 12, 18, 3, 3, 6, 9, 3, 3, 6, 9, 6, 6, 12, 18, 9, 9, 18, 27, 1, 1, 2, 3, 1, 1, 2, 3, 2, 2, 4, 6, 3, 3, 6, 9, 1
OFFSET
0,3
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x + 2*x^2 + 3*x^3) * A(x^4).
a(n) = 2^A160382(n) * 3^A160383(n).
MATHEMATICA
Table[Times @@ DeleteCases[IntegerDigits[n, 4], 0], {n, 0, 80}]
nmax = 80; A[_] = 1; Do[A[x_] = (1 + x + 2 x^2 + 3 x^3) A[x^4] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
PROG
(PARI) a(n) = vecprod(select(x->x, digits(n, 4))); \\ Michel Marcus, Nov 12 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Ilya Gutkovskiy, Nov 12 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 21 04:44 EDT 2024. Contains 376079 sequences. (Running on oeis4.)