[go: up one dir, main page]

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

Showing entries 1-10 | older changes
Number of factorizations of n into factors > 1 where each factor's prime indices are relatively prime. Number of factorizations of n using elements of A289509.
(history; published version)
#14 by Andrew Howroyd at Mon Dec 06 11:03:13 EST 2021
STATUS

reviewed

approved

#13 by Michel Marcus at Mon Dec 06 10:57:59 EST 2021
STATUS

proposed

reviewed

#12 by Antti Karttunen at Mon Dec 06 10:10:55 EST 2021
STATUS

editing

proposed

#11 by Antti Karttunen at Mon Dec 06 08:09:40 EST 2021
LINKS

<a href="/index/Pri#prime_indices">Index entries for sequences computed from indices in prime factorization</a>

#10 by Antti Karttunen at Mon Dec 06 08:08:45 EST 2021
LINKS

Antti Karttunen, <a href="/A320439/b320439.txt">Table of n, a(n) for n = 1..20000</a>

PROG

(PARI) A320439(n, m=n) = if(1==n, 1, my(s=0); fordiv(n, d, if((d<=m)&&(1==gcd(apply(x->primepi(x), factor(d)[, 1]))), s += A320439(n/d, d))); (s)); \\ Antti Karttunen, Dec 06 2021

STATUS

approved

editing

#9 by Susanna Cuyler at Wed Jan 09 13:04:59 EST 2019
STATUS

proposed

approved

#8 by Gus Wiseman at Tue Jan 08 23:02:39 EST 2019
STATUS

editing

proposed

#7 by Gus Wiseman at Tue Jan 08 23:02:36 EST 2019
NAME

Number of factorizations of n into factors > 1 where each factor's prime indices are relatively prime. Factorizations Number of factorizations of n using elements of A289509.

STATUS

proposed

editing

#6 by Gus Wiseman at Tue Jan 08 20:35:23 EST 2019
STATUS

editing

proposed

#5 by Gus Wiseman at Tue Jan 08 20:02:15 EST 2019
NAME

allocated for Gus WisemanNumber of factorizations of n into factors > 1 where each factor's prime indices are relatively prime. Factorizations of n using elements of A289509.

DATA

1, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 1, 5, 0, 1, 0, 2, 0, 1, 0, 4, 0, 1, 0, 2, 0, 2, 0, 7, 1, 1, 1, 3, 0, 1, 0, 4, 0, 1, 0, 2, 1, 1, 0, 7, 0, 1, 1, 2, 0, 1, 1, 4, 0, 1, 0, 5, 0, 1, 0, 11, 0, 2, 0, 2, 1, 2, 0, 6, 0, 1, 1, 2, 1, 1, 0, 7, 0, 1, 0, 3, 1, 1, 0

OFFSET

1,4

COMMENTS

Also the number of multiset partitions of the multiset of prime indices of n using multisets each of which is relatively prime.

A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.

Two or more numbers are relatively prime if they have no common divisor > 1. A single number is not considered to be relatively prime unless it is equal to 1.

EXAMPLE

The a(72) = 6 factorizations are (2*2*18), (2*6*6), (2*36), (4*18), (6*12), (72).

MATHEMATICA

primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];

facsrp[n_]:=If[n<=1, {{}}, Join@@Table[(Prepend[#, d]&)/@Select[facsrp[n/d], Min@@#>=d&], {d, Select[Rest[Divisors[n]], GCD@@primeMS[#]==1&]}]];

Table[Length[facsrp[n]], {n, 100}]

CROSSREFS
KEYWORD

allocated

nonn

AUTHOR

Gus Wiseman, Jan 08 2019

STATUS

approved

editing