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.

A301598 Number of thrice-factorizations of n.

Original entry on oeis.org

1, 1, 1, 4, 1, 4, 1, 10, 4, 4, 1, 16, 1, 4, 4, 34, 1, 16, 1, 16, 4, 4, 1, 54, 4, 4, 10, 16, 1, 22, 1, 80, 4, 4, 4, 78, 1, 4, 4, 54, 1, 22, 1, 16, 16, 4, 1, 181, 4, 16, 4, 16, 1, 54, 4, 54, 4, 4, 1, 102, 1, 4, 16, 254, 4, 22, 1, 16, 4, 22, 1, 272, 1, 4, 16, 16
Offset: 1

Views

Author

Gus Wiseman, Mar 24 2018

Keywords

Comments

A thrice-factorization of n is a choice of a twice-factorization of each factor in a factorization of n. Thrice-factorizations correspond to intervals in the lattice form of the multiorder of integer factorizations.

Examples

			The a(12) = 16 thrice-factorizations:
((2))*((2))*((3)), ((2))*((2)*(3)), ((3))*((2)*(2)), ((2)*(2)*(3)),
((2))*((2*3)), ((2)*(2*3)),
((2))*((6)), ((2)*(6)),
((3))*((2*2)), ((3)*(2*2)),
((3))*((4)), ((3)*(4)),
((2*2*3)),
((2*6)),
((3*4)),
((12)).
		

Crossrefs

Programs

  • Mathematica
    facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]];
    twifacs[n_]:=Join@@Table[Tuples[facs/@f],{f,facs[n]}];
    thrifacs[n_]:=Join@@Table[Tuples[twifacs/@f],{f,facs[n]}];
    Table[Length[thrifacs[n]],{n,15}]

Formula

Dirichlet g.f.: Product_{n > 1} 1/(1 - A281113(n)/n^s).