Nothing Special   »   [go: up one dir, main page]

login
Revision History for A339564 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Number of ways to choose a distinct factor in a factorization of n (pointed factorizations).
(history; published version)
#5 by Susanna Cuyler at Mon Apr 19 15:00:43 EDT 2021
STATUS

proposed

approved

#4 by Gus Wiseman at Mon Apr 19 10:24:13 EDT 2021
STATUS

editing

proposed

#3 by Gus Wiseman at Fri Apr 16 22:34:46 EDT 2021
FORMULA

a(n) = A057567(n) - A001055(n).

a(n) = Sum_{d|n, d>1} A001055(n/d).

EXAMPLE

((2) ) ((4) ) ((6) ) ((8) ) ((12) ) ((24) ) ((30))

((2)*2 ) ((2)*3 ) ((2)*4 ) ((2)*6 ) ((3)*8 ) ((5)*6)

(2*(3) ) (2*(4) ) (2*(6) ) (3*(8) ) (5*(6))

((2)*2*2 ) ((3)*4 ) ((4)*6 ) ((2)*15)

(3*(4) ) (4*(6) ) (2*(15))

((2)*2*3 ) ((2)*12 ) ((3)*10)

(2*2*(3) ) (2*(12) ) (3*(10))

((2)*2*6 ) ((2)*3*5)

(2*2*(6) ) (2*(3)*5)

((2)*3*4 ) (2*3*(5))

(2*(3)*4)

(2*3*(4))

((2)*2*2*3)

(2*2*2*(3))

CROSSREFS

The additive version is A000070 (strict: A015723).

The unpointed version is A001055 (strict: A045778, ordered: A074206, listed: A162247).

Allowing point (1) gives A057567.

Cf. Choosing a position instead of value gives A066637.

The ordered additive version is A336875.

A000005 counts divisors.

A001787 count normal multisets with a selected position.

A001792 counts compositions with a selected position.

A006128 counts partitions with a selected position.

A066186 count strongly normal multisets with a selected position.

A254577 counts ordered factorizations with a selected position.

Cf. A007716, A050336, A281113, A281116, A292886, A293627.

#2 by Gus Wiseman at Sat Apr 10 11:53:58 EDT 2021
NAME

allocated for Gus WisemanNumber of ways to choose a distinct factor in a factorization of n (pointed factorizations).

DATA

0, 1, 1, 2, 1, 3, 1, 4, 2, 3, 1, 7, 1, 3, 3, 7, 1, 7, 1, 7, 3, 3, 1, 14, 2, 3, 4, 7, 1, 10, 1, 12, 3, 3, 3, 17, 1, 3, 3, 14, 1, 10, 1, 7, 7, 3, 1, 26, 2, 7, 3, 7, 1, 14, 3, 14, 3, 3, 1, 25, 1, 3, 7, 19, 3, 10, 1, 7, 3, 10, 1, 36, 1, 3, 7, 7, 3, 10, 1, 26, 7, 3

OFFSET

1,4

EXAMPLE

The pointed factorizations of n for n = 2, 4, 6, 8, 12, 24, 30:

(2) (4) (6) (8) (12) (24) (30)

(2)*2 (2)*3 (2)*4 (2)*6 (3)*8 (5)*6

2*(3) 2*(4) 2*(6) 3*(8) 5*(6)

(2)*2*2 (3)*4 (4)*6 (2)*15

3*(4) 4*(6) 2*(15)

(2)*2*3 (2)*12 (3)*10

2*2*(3) 2*(12) 3*(10)

(2)*2*6 (2)*3*5

2*2*(6) 2*(3)*5

(2)*3*4 2*3*(5)

2*(3)*4

2*3*(4)

(2)*2*2*3

2*2*2*(3)

MATHEMATICA

facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];

Table[Sum[Length[Union[fac]], {fac, facs[n]}], {n, 50}]

CROSSREFS

Cf. A066637.

KEYWORD

allocated

nonn

AUTHOR

Gus Wiseman, Apr 10 2021

STATUS

approved

editing

#1 by Gus Wiseman at Tue Dec 08 23:05:21 EST 2020
NAME

allocated for Gus Wiseman

KEYWORD

allocated

STATUS

approved