The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A338880 Product of the nonzero digits of (n written in base 7). 2
1, 1, 2, 3, 4, 5, 6, 1, 1, 2, 3, 4, 5, 6, 2, 2, 4, 6, 8, 10, 12, 3, 3, 6, 9, 12, 15, 18, 4, 4, 8, 12, 16, 20, 24, 5, 5, 10, 15, 20, 25, 30, 6, 6, 12, 18, 24, 30, 36, 1, 1, 2, 3, 4, 5, 6, 1, 1, 2, 3, 4, 5, 6, 2, 2, 4, 6, 8, 10, 12, 3, 3, 6, 9, 12, 15, 18, 4, 4, 8, 12 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x + 2*x^2 + 3*x^3 + 4*x^4 + 5*x^5 + 6*x^6) * A(x^7).
MATHEMATICA
Table[Times @@ DeleteCases[IntegerDigits[n, 7], 0], {n, 0, 80}]
nmax = 80; A[_] = 1; Do[A[x_] = (1 + x + 2 x^2 + 3 x^3 + 4 x^4 + 5 x^5 + 6 x^6) A[x^7] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
PROG
(PARI) a(n) = vecprod(select(x->x, digits(n, 7))); \\ Michel Marcus, Nov 14 2020
CROSSREFS
Sequence in context: A255827 A277545 A190596 * A053842 A010885 A338480
KEYWORD
nonn,base
AUTHOR
Ilya Gutkovskiy, Nov 13 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 May 14 06:13 EDT 2024. Contains 372528 sequences. (Running on oeis4.)