login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A048768 Numbers n such that A048767(n) = n. 8
1, 2, 9, 12, 18, 40, 112, 125, 250, 352, 360, 675, 832, 1008, 1125, 1350, 1500, 2176, 2250, 2401, 3168, 3969, 4802, 4864, 7488, 7938, 11776, 14000, 19584, 21609, 28812, 29403, 29696, 43218, 43776, 44000, 58806, 63488, 75600, 96040, 104000, 105984, 123201, 126000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k), so these are Heinz numbers of integer partitions that are fixed points under the map described in A217605 (which interchanges the parts with their multiplicities). The enumeration of these partitions by sum is given by A217605. - Gus Wiseman, May 04 2019
LINKS
EXAMPLE
12 = (2^2)*(3^1) = (2nd prime)^pi(2) * (first prime)^pi(3).
From Gus Wiseman, May 04 2019: (Start)
The sequence of terms together with their prime indices begins:
1: {}
2: {1}
9: {2,2}
12: {1,1,2}
18: {1,2,2}
40: {1,1,1,3}
112: {1,1,1,1,4}
125: {3,3,3}
250: {1,3,3,3}
352: {1,1,1,1,1,5}
360: {1,1,1,2,2,3}
675: {2,2,2,3,3}
832: {1,1,1,1,1,1,6}
1008: {1,1,1,1,2,2,4}
1125: {2,2,3,3,3}
1350: {1,2,2,2,3,3}
1500: {1,1,2,3,3,3}
2176: {1,1,1,1,1,1,1,7}
2250: {1,2,2,3,3,3}
2401: {4,4,4,4}
(End)
MATHEMATICA
wt[n_]:=Times@@Cases[FactorInteger[n], {p_, k_}:>Prime[k]^PrimePi[p]];
Select[Range[1000], wt[#]==#&] (* Gus Wiseman, May 04 2019 *)
PROG
(PARI) is(n) = {my(f = factor(n), p = f[, 1], e = f[, 2]); #Set(e) == #e && prod(i = 1, #e, prime(e[i])^primepi(p[i])) == n; } \\ Amiram Eldar, Oct 20 2023
CROSSREFS
A subsequence of A130091.
Sequence in context: A360453 A324570 A109297 * A070226 A273669 A129829
KEYWORD
nonn,eigen
AUTHOR
EXTENSIONS
a(1) inserted and more terms added by Amiram Eldar, Oct 20 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)