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.

Showing 1-2 of 2 results.

A378175 Triangle T(n,k) read by rows in which n-th row lists in increasing order all multiplicative partitions mu of n (with factors > 1) encoded as Product_{j in mu} prime(j); n>=1, 1<=k<=A001055(n).

Original entry on oeis.org

1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 27, 23, 25, 29, 33, 31, 35, 37, 39, 45, 41, 43, 51, 47, 55, 49, 53, 57, 63, 81, 59, 61, 65, 69, 75, 67, 71, 77, 87, 99, 73, 85, 79, 93, 83, 89, 91, 95, 105, 111, 117, 135, 97, 121, 101, 123, 103, 115, 125, 107, 119, 129, 153
Offset: 1

Views

Author

Alois P. Heinz, Nov 18 2024

Keywords

Examples

			The multiplicative partitions of n=8 are {[8], [4,2], [2,2,2]}, encodings give {prime(8), prime(4)*prime(2), prime(2)^3} = {19, 7*3, 3^3} => row 8 = [19, 21, 27].
For n=1 the empty partition [] gives the empty product 1.
Triangle T(n,k) begins:
   1 ;
   3 ;
   5 ;
   7,  9 ;
  11 ;
  13, 15 ;
  17 ;
  19, 21, 27 ;
  23, 25 ;
  29, 33 ;
  31 ;
  35, 37, 39, 45 ;
  41 ;
  43, 51 ;
  47, 55 ;
  49, 53, 57, 63, 81 ;
  59 ;
  ...
		

Crossrefs

Row sums give A378176.
Row lengths give A001055.
Column k=1 gives A318871.
Rightmost elements of rows give A064988.
Sorted terms give A005408.

Programs

  • Maple
    b:= proc(n) option remember; `if`(n=1, {1}, {seq(map(x-> x*
          ithprime(d), b(n/d))[], d=numtheory[divisors](n) minus {1})})
        end:
    T:= n-> sort([b(n)[]])[]:
    seq(T(n), n=1..28);

Formula

T(prime(n),1) = T(A000040(n),1) = A006450(n).

A377853 Sum over all multiplicative partitions mu of n whose sum is also n (with factors >= 1), of the encoding as Product_{j in mu} prime(j).

Original entry on oeis.org

2, 3, 5, 16, 11, 43, 17, 211, 223, 293, 31, 3221, 41, 1675, 7087, 53109, 59, 118973, 67, 382791, 174153, 47695, 83, 12164185, 3965025, 252005, 36536423, 36180075, 109, 268148849, 127, 2749874307, 81264777, 5800075, 1568669845, 39708983447, 157, 26345635, 1719664807
Offset: 1

Views

Author

Alois P. Heinz, Nov 09 2024

Keywords

Examples

			The multiplicative partitions of n=8 whose sum is also n are {[8], [4,2,1,1], [2,2,2,1,1]}, encodings give {prime(8), prime(4)*prime(2)*prime(1)^2, prime(2)^3*prime(1)^2} = {19, 7*3*2^2, 3^3*2^2} = {19, 84, 108}, the sum gives 211.
		

Crossrefs

Row sums of A377852.

Formula

a(prime(n)) = a(A000040(n)) = A006450(n).
Showing 1-2 of 2 results.