cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Previous Showing 11-20 of 22 results. Next

A111217 d_7(n), tau_7(n), number of ordered factorizations of n as n = rstuvwx (7-factorizations).

Original entry on oeis.org

1, 7, 7, 28, 7, 49, 7, 84, 28, 49, 7, 196, 7, 49, 49, 210, 7, 196, 7, 196, 49, 49, 7, 588, 28, 49, 84, 196, 7, 343, 7, 462, 49, 49, 49, 784, 7, 49, 49, 588, 7, 343, 7, 196, 196, 49, 7, 1470, 28, 196, 49, 196, 7, 588, 49, 588, 49, 49, 7, 1372, 7, 49, 196, 924, 49, 343, 7, 196
Offset: 1

Views

Author

Gerald McGarvey, Oct 25 2005

Keywords

Crossrefs

Cf. tau_k(n) for k>=2: A000005, A007425, A007426, A061200, A034695, A111218 - A111221, A111306.
Column k=7 of A077592.

Programs

  • Mathematica
    tau[n_, 1] = 1; tau[n_, k_] := tau[n, k] = Plus @@ (tau[ #, k - 1] & /@ Divisors[n]); Table[ tau[n, 7], {n, 68}] (* 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, 7], {n, 1, 100}] (* Amiram Eldar, Sep 13 2020 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,i,sumdiv(i,j,sumdiv(j,k,sumdiv(k,l,sumdiv(l,x,numdiv(x)))))),","))
    
  • PARI
    a(n, f=factor(n))=f=f[, 2]; prod(i=1, #f, binomial(f[i]+6, 6)) \\ Charles R Greathouse IV, Oct 28 2017

Formula

Dirichlet convolution of A000012 with A034695, or of A000005 with A061200, or of A007425 with A007426. Dirichlet g.f. zeta^7(s). - R. J. Mathar, Apr 01 2011
G.f.: Sum_{k>=1} tau_6(k)*x^k/(1 - x^k). - Ilya Gutkovskiy, Oct 30 2018
Multiplicative with a(p^e) = binomial(e+6,6). - Amiram Eldar, Sep 13 2020

A111219 d_9(n), tau_9(n), number of ordered factorizations of n as n = rstuvwxyz (9-factorizations).

Original entry on oeis.org

1, 9, 9, 45, 9, 81, 9, 165, 45, 81, 9, 405, 9, 81, 81, 495, 9, 405, 9, 405, 81, 81, 9, 1485, 45, 81, 165, 405, 9, 729, 9, 1287, 81, 81, 81, 2025, 9, 81, 81, 1485, 9, 729, 9, 405, 405, 81, 9, 4455, 45, 405, 81, 405, 9, 1485, 81, 1485, 81, 81, 9, 3645, 9, 81, 405, 3003, 81
Offset: 1

Views

Author

Gerald McGarvey, Oct 25 2005

Keywords

Crossrefs

Cf. tau_2(n)...tau_6(n): A000005, A007425, A007426, A061200, A034695.
Column k=9 of A077592.

Programs

  • Mathematica
    tau[n_, 1] = 1; tau[n_, k_] := tau[n, k] = Plus @@ (tau[ #, k - 1] & /@ Divisors[n]); Table[ tau[n, 9], {n, 65}] (* 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, 9], {n, 1, 100}] (* Amiram Eldar, Sep 13 2020 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,i,sumdiv(i,j,sumdiv(j,k,sumdiv(k,l,sumdiv(l,m,sumdiv(m,o,sumdiv(o,x,numdiv(x)))))))),","))
    
  • PARI
    a(n, f=factor(n))=f=f[, 2]; prod(i=1, #f, binomial(f[i]+8, 8)) \\ Charles R Greathouse IV, Oct 28 2017

Formula

G.f.: Sum_{k>=1} tau_8(k)*x^k/(1 - x^k). - Ilya Gutkovskiy, Oct 30 2018
Multiplicative with a(p^e) = binomial(e+8,8). - Amiram Eldar, Sep 13 2020

A111220 d_10(n), tau_10(n), number of ordered factorizations of n as n = rstuvwxyza (10-factorizations).

Original entry on oeis.org

1, 10, 10, 55, 10, 100, 10, 220, 55, 100, 10, 550, 10, 100, 100, 715, 10, 550, 10, 550, 100, 100, 10, 2200, 55, 100, 220, 550, 10, 1000, 10, 2002, 100, 100, 100, 3025, 10, 100, 100, 2200, 10, 1000, 10, 550, 550, 100, 10, 7150, 55, 550, 100, 550, 10, 2200, 100
Offset: 1

Views

Author

Gerald McGarvey, Oct 25 2005

Keywords

Crossrefs

Cf. tau_2(n)...tau_6(n): A000005, A007425, A007426, A061200, A034695.
Column k=10 of A077592.

Programs

  • Mathematica
    tau[n_, 1] = 1; tau[n_, k_] := tau[n, k] = Plus @@ (tau[ #, k - 1] & /@ Divisors[n]); Table[ tau[n, 10], {n, 55}] (* 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, 10], {n, 1, 100}] (* Amiram Eldar, Sep 13 2020 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,i,sumdiv(i,j,sumdiv(j,k,sumdiv(k,l,sumdiv(l,m,sumdiv(m,o,sumdiv(o,p,sumdiv(p,x,numdiv(x))))))))),","))
    
  • PARI
    a(n, f=factor(n))=f=f[, 2]; prod(i=1, #f, binomial(f[i]+9, 9)) \\ Charles R Greathouse IV, Oct 28 2017

Formula

G.f.: Sum_{k>=1} tau_9(k)*x^k/(1 - x^k). - Ilya Gutkovskiy, Oct 30 2018
Multiplicative with a(p^e) = binomial(e+9,9). - Amiram Eldar, Sep 13 2020

A343662 Irregular triangle read by rows where T(n,k) is the number of strict length k chains of divisors of n, 0 <= k <= Omega(n) + 1.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 2, 1, 1, 3, 3, 1, 1, 2, 1, 1, 4, 5, 2, 1, 2, 1, 1, 4, 6, 4, 1, 1, 3, 3, 1, 1, 4, 5, 2, 1, 2, 1, 1, 6, 12, 10, 3, 1, 2, 1, 1, 4, 5, 2, 1, 4, 5, 2, 1, 5, 10, 10, 5, 1, 1, 2, 1, 1, 6, 12, 10, 3, 1, 2, 1, 1, 6, 12, 10, 3, 1, 4, 5, 2, 1, 4, 5, 2
Offset: 1

Views

Author

Gus Wiseman, May 01 2021

Keywords

Examples

			Triangle begins:
   1:  1  1
   2:  1  2  1
   3:  1  2  1
   4:  1  3  3  1
   5:  1  2  1
   6:  1  4  5  2
   7:  1  2  1
   8:  1  4  6  4  1
   9:  1  3  3  1
  10:  1  4  5  2
  11:  1  2  1
  12:  1  6 12 10  3
  13:  1  2  1
  14:  1  4  5  2
  15:  1  4  5  2
  16:  1  5 10 10  5  1
For example, row n = 12 counts the following chains:
  ()  (1)   (2/1)   (4/2/1)   (12/4/2/1)
      (2)   (3/1)   (6/2/1)   (12/6/2/1)
      (3)   (4/1)   (6/3/1)   (12/6/3/1)
      (4)   (4/2)   (12/2/1)
      (6)   (6/1)   (12/3/1)
      (12)  (6/2)   (12/4/1)
            (6/3)   (12/4/2)
            (12/1)  (12/6/1)
            (12/2)  (12/6/2)
            (12/3)  (12/6/3)
            (12/4)
            (12/6)
		

Crossrefs

Column k = 1 is A000005.
Row ends are A008480.
Row lengths are A073093.
Column k = 2 is A238952.
The case from n to 1 is A334996 or A251683 (row sums: A074206).
A non-strict version is A334997 (transpose: A077592).
The case starting with n is A337255 (row sums: A067824).
Row sums are A337256 (nonempty: A253249).
A001055 counts factorizations.
A001221 counts distinct prime factors.
A001222 counts prime factors with multiplicity.
A097805 counts compositions by sum and length.
A122651 counts strict chains of divisors summing to n.
A146291 counts divisors of n with k prime factors (with multiplicity).
A163767 counts length n - 1 chains of divisors of n.
A167865 counts strict chains of divisors > 1 summing to n.
A337070 counts strict chains of divisors starting with superprimorials.

Programs

  • Mathematica
    Table[Length[Select[Reverse/@Subsets[Divisors[n],{k}],And@@Divisible@@@Partition[#,2,1]&]],{n,15},{k,0,PrimeOmega[n]+1}]

A111221 d_11(n), tau_11(n), number of ordered factorizations of n as n = rstuvwxyzab (11-factorizations).

Original entry on oeis.org

1, 11, 11, 66, 11, 121, 11, 286, 66, 121, 11, 726, 11, 121, 121, 1001, 11, 726, 11, 726, 121, 121, 11, 3146, 66, 121, 286, 726, 11, 1331, 11, 3003, 121, 121, 121, 4356, 11, 121, 121, 3146, 11, 1331, 11, 726, 726, 121, 11, 11011, 66, 726, 121, 726, 11, 3146, 121
Offset: 1

Views

Author

Gerald McGarvey, Oct 25 2005

Keywords

Crossrefs

Cf. tau_1(n): A000012
Cf. tau_2(n)...tau_6(n): A000005, A007425, A007426, A061200, A034695.
Cf. tau_7(n)...tau_10(n): A111217, A111218, A111219, A111220.
Cf. tau_12(n): A111306.
Column k=11 of A077592.

Programs

  • Mathematica
    tau[n_, 1] = 1; tau[n_, k_] := tau[n, k] = Plus @@ (tau[ #, k - 1] & /@ Divisors[n]); Table[ tau[n, 11], {n, 55}] (* 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, 11], {n, 1, 100}] (* Amiram Eldar, Sep 13 2020 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,i,sumdiv(i,j,sumdiv(j,k,sumdiv(k,l,sumdiv(l,m,sumdiv(m,o,sumdiv(o,p,sumdiv(p,q,sumdiv(q,x,numdiv(x)))))))))),","))
    
  • PARI
    a(n, f=factor(n))=f=f[, 2]; prod(i=1, #f, binomial(f[i]+10, 10)) \\ Charles R Greathouse IV, Oct 28 2017

Formula

G.f.: Sum_{k>=1} tau_10(k)*x^k/(1 - x^k). - Ilya Gutkovskiy, Oct 30 2018
Multiplicative with a(p^e) = binomial(e+10,10). - Amiram Eldar, Sep 13 2020

A111306 d_12(n), tau_12(n), number of ordered factorizations of n as n = rstuvwxyzabc (12-factorizations).

Original entry on oeis.org

1, 12, 12, 78, 12, 144, 12, 364, 78, 144, 12, 936, 12, 144, 144, 1365, 12, 936, 12, 936, 144, 144, 12, 4368, 78, 144, 364, 936, 12, 1728, 12, 4368, 144, 144, 144, 6084, 12, 144, 144, 4368, 12, 1728, 12, 936, 936, 144, 12, 16380, 78, 936, 144, 936, 12, 4368, 144
Offset: 1

Views

Author

Gerald McGarvey, Nov 02 2005

Keywords

Crossrefs

Column k=12 of A077592.

Programs

  • Maple
    b:= proc(n, k) option remember; `if`(k=1, 1,
          add(b(d, k-1), d=numtheory[divisors](n)))
        end:
    a:= n-> b(n, 12):
    seq(a(n), n=1..55);  # Alois P. Heinz, Jun 12 2024
  • Mathematica
    tau[k_,1]:=1; tau[k_,n_]:=Times@@(Binomial[#+k-1,k-1]&/@FactorInteger[n][[All,2]]); Table[tau[12,n],{n,1000}] (* Enrique Pérez Herrero, Jan 17 2013 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,i,sumdiv(i,j,sumdiv(j,k,sumdiv(k,l,sumdiv(l,m,sumdiv(m,o,sumdiv(o,p,sumdiv(p,q,sumdiv(q,r,sumdiv(r,x,numdiv(x))))))))))),","))
    
  • PARI
    a(n,f=factor(n))=f=f[,2]; prod(i=1,#f, binomial(f[i]+11, 11)) \\ Charles R Greathouse IV, Oct 28 2017

Formula

G.f.: Sum_{k>=1} tau_11(k)*x^k/(1 - x^k). - Ilya Gutkovskiy, Oct 30 2018
Multiplicative with a(p^e) = binomial(e+11,11). - Amiram Eldar, Sep 13 2020

A343939 Number of n-chains of divisors of n.

Original entry on oeis.org

1, 3, 4, 15, 6, 49, 8, 165, 55, 121, 12, 1183, 14, 225, 256, 4845, 18, 3610, 20, 4851, 484, 529, 24, 73125, 351, 729, 4060, 12615, 30, 29791, 32, 435897, 1156, 1225, 1296, 494209, 38, 1521, 1600, 505981, 42, 79507, 44, 46575, 49726, 2209, 48
Offset: 1

Views

Author

Gus Wiseman, May 05 2021

Keywords

Examples

			The a(1) = 1 through a(5) = 6 chains:
  (1)  (1/1)  (1/1/1)  (1/1/1/1)  (1/1/1/1/1)
       (2/1)  (3/1/1)  (2/1/1/1)  (5/1/1/1/1)
       (2/2)  (3/3/1)  (2/2/1/1)  (5/5/1/1/1)
              (3/3/3)  (2/2/2/1)  (5/5/5/1/1)
                       (2/2/2/2)  (5/5/5/5/1)
                       (4/1/1/1)  (5/5/5/5/5)
                       (4/2/1/1)
                       (4/2/2/1)
                       (4/2/2/2)
                       (4/4/1/1)
                       (4/4/2/1)
                       (4/4/2/2)
                       (4/4/4/1)
                       (4/4/4/2)
                       (4/4/4/4)
		

Crossrefs

Diagonal n = k - 1 of the array A077592.
Chains of length n - 1 are counted by A163767.
Diagonal n = k of the array A334997.
The version counting all multisets of divisors (not just chains) is A343935.
A000005(n) counts divisors of n.
A067824(n) counts strict chains of divisors starting with n.
A074206(n) counts strict chains of divisors from n to 1.
A146291(n,k) counts divisors of n with k prime factors (with multiplicity).
A251683(n,k-1) counts strict k-chains of divisors from n to 1.
A253249(n) counts nonempty chains of divisors of n.
A334996(n,k) counts strict k-chains of divisors from n to 1.
A337255(n,k) counts strict k-chains of divisors starting with n.
A343658(n,k) counts k-multisets of divisors of n.
A343662(n,k) counts strict k-chains of divisors of n (row sums: A337256).

Programs

  • Mathematica
    Table[Length[Select[Tuples[Divisors[n],n],OrderedQ[#]&&And@@Divisible@@@Reverse/@Partition[#,2,1]&]],{n,10}]

A321192 a(n) = [x^n] Product_{k>=1} (1 + x^k)^tau_n(k), where tau_n(k) = number of ordered n-factorizations of k.

Original entry on oeis.org

1, 1, 2, 6, 20, 55, 239, 700, 3212, 10104, 48622, 161579, 806843, 2799199, 14379647, 52018828, 273472712, 1023655306, 5491615463, 21234676241, 115910309103, 460998296937, 2556361045845, 10440651927427, 58714921974979, 245586789818255, 1399187406060485
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 29 2018

Keywords

Crossrefs

Programs

  • Mathematica
    tau[n_, 1] = 1; tau[n_, k_] := tau[n, k] = Plus @@ (tau[#, k-1] & /@ Divisors[n]); nmax = 30; Table[SeriesCoefficient[Product[(1 + x^k)^tau[k, n], {k, 1, n}], {x, 0, n}], {n, 0, nmax}] (* Vaclav Kotesovec, Oct 29 2018 *)

Formula

a(n) = [x^n] Product_{k_1>=1, k_2>=1, ..., k_n>=1} (1 + x^(k_1*k_2*...*k_n)).

A077593 Table by antidiagonals where T(n,k) = Sum_{i=1..n} T(floor(n/i),k-1) starting with T(n,0)=1 if n>0 and T(0,0)=0.

Original entry on oeis.org

0, 0, 1, 0, 1, 1, 0, 1, 2, 1, 0, 1, 3, 3, 1, 0, 1, 4, 5, 4, 1, 0, 1, 5, 7, 8, 5, 1, 0, 1, 6, 9, 13, 10, 6, 1, 0, 1, 7, 11, 19, 16, 14, 7, 1, 0, 1, 8, 13, 26, 23, 25, 16, 8, 1, 0, 1, 9, 15, 34, 31, 39, 28, 20, 9, 1, 0, 1, 10, 17, 43, 40, 56, 43, 38, 23, 10, 1, 0, 1, 11, 19, 53, 50, 76, 61, 63
Offset: 0

Views

Author

Henry Bottomley, Nov 08 2002

Keywords

Examples

			Rows start:
 0,0,0,0,0,0...;
 1,1,1,1,1,1...;
 1,2,3,4,5,6...;
 1,3,5,7,9,11...;
 1,4,8,13,19,26,...;
 ...
		

Crossrefs

Rows include (with offsets) A000004, A000012, A000027, A005408, A034856, A052905.
Cf. A077593.

Formula

T(n, k) = T(n-1, k) + A077592(n, k). Writing m as Sum_{i} p_i^e_i, T(n, k) = Sum_{m=1..n} Product_{i} C(k+e_i-1, e_i).

A321191 a(n) = [x^n] Product_{k>=1} 1/(1 - x^k)^tau_n(k), where tau_n(k) = number of ordered n-factorizations of k.

Original entry on oeis.org

1, 1, 3, 7, 29, 71, 336, 932, 4593, 13690, 69708, 222718, 1163734, 3902016, 20825927, 73229397, 397806717, 1452193925, 8016518379, 30328368519, 169781766056, 662143701506, 3755514158949, 15071604241851, 86496856963200, 356063096545571, 2066351471542036
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 29 2018

Keywords

Crossrefs

Programs

  • Mathematica
    tau[n_, 1] = 1; tau[n_, k_] := tau[n, k] = Plus @@ (tau[#, k-1] & /@ Divisors[n]); nmax = 30; Table[SeriesCoefficient[Product[1/(1 - x^k)^tau[k, n], {k, 1, n}], {x, 0, n}], {n, 0, nmax}] (* Vaclav Kotesovec, Oct 29 2018 *)

Formula

a(n) = [x^n] Product_{k_1>=1, k_2>=1, ..., k_n>=1} 1/(1 - x^(k_1*k_2*...*k_n)).
Previous Showing 11-20 of 22 results. Next