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-3 of 3 results.

A100778 Integer powers of primorial numbers.

Original entry on oeis.org

1, 2, 4, 6, 8, 16, 30, 32, 36, 64, 128, 210, 216, 256, 512, 900, 1024, 1296, 2048, 2310, 4096, 7776, 8192, 16384, 27000, 30030, 32768, 44100, 46656, 65536, 131072, 262144, 279936, 510510, 524288, 810000, 1048576, 1679616, 2097152, 4194304, 5336100
Offset: 1

Views

Author

Amarnath Murthy, Nov 28 2004

Keywords

Comments

Smallest squarefree numbers or their powers with distinct prime signatures. Or least numbers with prime signatures (p*q*r*...)^k, where p,q,r,... are primes and k is a whole number.
Also Heinz numbers of uniform integer partitions whose union is an initial interval of positive integers. An integer partition is uniform if all parts appear with the same multiplicity. The Heinz number of an integer partition (y_1, ..., y_k) is prime(y_1) * ... * prime(y_k). The sequence of all uniform integer partitions whose Heinz numbers belong to the sequence begins: (1), (11), (12), (111), (1111), (123), (11111), (1122), (111111), (1111111), (1234), (111222), (11111111), (111111111), (112233), (1111111111). - Gus Wiseman, Dec 26 2018
From Amiram Eldar, Sep 26 2023: (Start)
Intersection of A025487 and A072774.
The distinct terms of A046523(A072774(n)) in ascending orders.
The k-th power of the n-th primorial number, A002110(n)^k, has (k+1)^n divisors which are the set of the (k+1)-free prime(n)-smooth numbers. (End)

Examples

			10 is not a term as 6 is a member with the same prime signature 10 > 6.
216 is a term as 216 = (2*3)^3. 243 is not a term as 32 represents that prime signature.
		

Crossrefs

Programs

  • Mathematica
    unintQ[n_]:=And[SameQ@@Last/@FactorInteger[n],Length[FactorInteger[n]]==PrimePi[FactorInteger[n][[-1,1]]]];
    Select[Range[1000],unintQ] (* Gus Wiseman, Dec 26 2018 *)

Formula

Sum_{n>=1} 1/a(n) = 1 + Sum_{n>=1} 1/A057588(n) = 2.2397359032... - Amiram Eldar, Oct 20 2020; corrected by Hal M. Switkay and Amiram Eldar, Apr 12 2021

Extensions

More terms and simpler definition from Ray Chandler, Nov 29 2004

A322792 Irregular triangle read by rows where T(n,k) = A002110(n/d)^d, where d = A027750(n,k) and A002110(m) is the product of the first m primes.

Original entry on oeis.org

2, 6, 4, 30, 8, 210, 36, 16, 2310, 32, 30030, 900, 216, 64, 510510, 128, 9699690, 44100, 1296, 256, 223092870, 27000, 512, 6469693230, 5336100, 7776, 1024, 200560490130, 2048, 7420738134810, 901800900, 9261000, 810000, 46656, 4096, 304250263527210, 8192
Offset: 1

Views

Author

Gus Wiseman, Dec 26 2018

Keywords

Comments

A reordering of A100778 (powers of primorials), these are the Heinz numbers of uniform integer partitions of length n whose union is an initial interval of positive integers. An integer partition is uniform if all parts appear with the same multiplicity. The Heinz number of an integer partition (y_1, ..., y_k) is prime(y_1) * ... * prime(y_k).

Examples

			Triangle begins:
           2
           6          4
          30          8
         210         36         16
        2310         32
       30030        900        216         64
      510510        128
     9699690      44100       1296        256
   223092870      27000        512
  6469693230    5336100       7776       1024
Corresponding triangle of integer partitions whose Heinz numbers belong to the triangle begins:
  (1)
  (21)        (11)
  (321)       (111)
  (4321)      (2211)      (1111)
  (54321)     (11111)
  (654321)    (332211)    (222111)    (111111)
  (7654321)   (1111111)
  (87654321)  (44332211)  (22221111)  (11111111)
  (987654321) (333222111) (111111111)
		

Crossrefs

Programs

  • Mathematica
    Table[Product[Prime[i]^d,{i,n/d}],{n,12},{d,Divisors[n]}]

Extensions

Name edited by Peter Munn, Mar 05 2025

A365308 Powers of primorials P(k)^m, k > 1, m > 1, where P(k) = A002110(k).

Original entry on oeis.org

36, 216, 900, 1296, 7776, 27000, 44100, 46656, 279936, 810000, 1679616, 5336100, 9261000, 10077696, 24300000, 60466176, 362797056, 729000000, 901800900, 1944810000, 2176782336, 12326391000, 13060694016, 21870000000, 78364164096, 260620460100, 408410100000, 470184984576
Offset: 1

Views

Author

Michael De Vlieger, Oct 02 2023

Keywords

Comments

Proper subset of A303606, in turn a proper subset of A286708, in turn a proper subset of A126706.
Numbers in A322793 that are not powers of 2.

Examples

			Terms less than 10^4 include P(2)^2 = 36, P(2)^3 = 216, P(2)^4 = 1296, P(2)^5 = 7776, and P(3)^2 = 900.
		

Crossrefs

Programs

  • Mathematica
    nn = 2^39; k = 2; P = 6; Union@ Reap[While[j = 2; While[P^j < nn, Sow[P^j]; j++]; j > 2, k++; P *= Prime[k]] ][[-1, 1]]

Formula

Intersection of A100778 and A303606.
This sequence is {A325374 \ {A002110 \ {1,2}}} = {A322793 \ {A000079 \ {1,2}}}.
Sum_{n>=1} 1/a(n) = Sum_{k>=2} 1/(P(k)*(P(k)-1)) = 0.03450573145072369022... . - Amiram Eldar, Mar 10 2024
Showing 1-3 of 3 results.