[go: up one dir, main page]

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

Showing all changes.
Least positive integer k with k primitive practical and k*n practical.
(history; published version)
#6 by N. J. A. Sloane at Sat May 20 14:43:49 EDT 2023
STATUS

proposed

approved

#5 by Frank M Jackson at Sun May 14 06:38:47 EDT 2023
STATUS

editing

proposed

#4 by Frank M Jackson at Sun May 14 06:35:06 EDT 2023
COMMENTS

For all integers n>0 there exists k such that k*n is practical and k is primitive practical. For example, n*prime(f)# is practical where k = prime(f)# = A267124A002110(f) is a primorial number and f is the prime index of the largest prime number in the factorization of n. All primorials are primitive practical numbers. The sequence above gives least k.

STATUS

proposed

editing

Discussion
Sun May 14
06:38
Frank M Jackson: Corrected reference to primorial numbers.
#3 by Frank M Jackson at Wed May 03 19:26:42 EDT 2023
STATUS

editing

proposed

#2 by Frank M Jackson at Wed May 03 19:24:01 EDT 2023
NAME

allocated for Frank M JacksonLeast positive integer k with k primitive practical and k*n practical.

DATA

1, 1, 2, 1, 6, 1, 6, 1, 2, 2, 6, 1, 6, 2, 2, 1, 20, 1, 20, 1, 2, 6, 20, 1, 6, 6, 2, 1, 20, 1, 20, 1, 2, 6, 6, 1, 20, 6, 2, 1, 20, 1, 20, 2, 2, 6, 28, 1, 6, 2, 6, 2, 28, 1, 6, 1, 6, 6, 30, 1, 30, 20, 2, 1, 6, 1, 30, 6, 6, 2, 30, 1, 30, 20, 2, 6, 6, 1, 42, 1, 2, 20, 42, 1, 6, 20, 6, 1, 42, 1, 6, 6, 6, 20, 6, 1, 42, 2, 2, 1

OFFSET

1,3

COMMENTS

For all integers n>0 there exists k such that k*n is practical and k is primitive practical. For example, n*prime(f)# is practical where k = prime(f)# = A267124(f) is a primorial number and f is the prime index of the largest prime number in the factorization of n. All primorials are primitive practical numbers. The sequence above gives least k.

EXAMPLE

a(5)=6 since 6*5=30 is practical and 6 is primitive practical. Also 4*5=20 is practical but 4 is not primitive practical.

MATHEMATICA

PracticalQ[n_] := Module[{f, p, e, prod=1, ok=True}, If[n<1||(n>1&&OddQ[n]), False, If[n==1, True, f=FactorInteger[n]; {p, e}=Transpose[f]; Do[If[p[[i]]>1+DivisorSigma[1, prod], ok=False; Break[]]; prod=prod*p[[i]]^e[[i]], {i, Length[p]}]; ok]]];

DivFreeQ[n_] := Module[{plst=First/@Select[FactorInteger[n], #[[2]]>1 &], m, ok=False}, Do[If[!PracticalQ[n/plst[[m]]], ok = True, ok = False; Break[]], {m, 1, Length@plst}]; ok];

PPracticalQ[n_] := PracticalQ[n]&&(SquareFreeQ[n]||DivFreeQ[n]);

lst = {}; Do[m=0; While[!PPracticalQ[m]||(!PracticalQ[m*n]&&m<10000), m++]; AppendTo[lst, m], {n, 1, 500}]; lst

CROSSREFS
KEYWORD

allocated

nonn

AUTHOR

Frank M Jackson, May 03 2023

STATUS

approved

editing

#1 by Frank M Jackson at Wed May 03 19:24:01 EDT 2023
NAME

allocated for Frank M Jackson

KEYWORD

allocated

STATUS

approved