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!)
A111218 d_8(n), tau_8(n), number of ordered factorizations of n as n = rstuvwxy (8-factorizations). 7
1, 8, 8, 36, 8, 64, 8, 120, 36, 64, 8, 288, 8, 64, 64, 330, 8, 288, 8, 288, 64, 64, 8, 960, 36, 64, 120, 288, 8, 512, 8, 792, 64, 64, 64, 1296, 8, 64, 64, 960, 8, 512, 8, 288, 288, 64, 8, 2640, 36, 288, 64, 288, 8, 960, 64, 960, 64, 64, 8, 2304, 8, 64, 288, 1716, 64, 512, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} tau_7(k)*x^k/(1 - x^k). - Ilya Gutkovskiy, Oct 30 2018
Multiplicative with a(p^e) = binomial(e+7,7). - Amiram Eldar, Sep 13 2020
MATHEMATICA
tau[n_, 1] = 1; tau[n_, k_] := tau[n, k] = Plus @@ (tau[ #, k - 1] & /@ Divisors[n]); Table[ tau[n, 8], {n, 67}] (* Robert G. Wilson v, Nov 02 2005 *)
tau[1, k_] := 1; tau[n_, k_] := Times @@ (Binomial[Last[#]+k-1, k-1]& /@ FactorInteger[n]); Table[tau[n, 8], {n, 1, 100}] (* Amiram Eldar, Sep 13 2020 *)
PROG
(PARI) for(n=1, 100, print1(sumdiv(n, i, sumdiv(i, j, sumdiv(j, k, sumdiv(k, l, sumdiv(l, m, sumdiv(m, x, numdiv(x))))))), ", "))
(PARI) a(n, f=factor(n))=f=f[, 2]; prod(i=1, #f, binomial(f[i]+7, 7)) \\ Charles R Greathouse IV, Oct 28 2017
CROSSREFS
Column k=8 of A077592.
Sequence in context: A053596 A141384 A183400 * A339340 A341247 A188275
KEYWORD
mult,nonn
AUTHOR
Gerald McGarvey, Oct 25 2005
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 June 10 07:44 EDT 2024. Contains 373253 sequences. (Running on oeis4.)