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.

Previous Showing 11-17 of 17 results.

A343939 Number of n-chains of divisors of n.

Original entry on oeis.org

1, 3, 4, 15, 6, 49, 8, 165, 55, 121, 12, 1183, 14, 225, 256, 4845, 18, 3610, 20, 4851, 484, 529, 24, 73125, 351, 729, 4060, 12615, 30, 29791, 32, 435897, 1156, 1225, 1296, 494209, 38, 1521, 1600, 505981, 42, 79507, 44, 46575, 49726, 2209, 48
Offset: 1

Views

Author

Gus Wiseman, May 05 2021

Keywords

Examples

			The a(1) = 1 through a(5) = 6 chains:
  (1)  (1/1)  (1/1/1)  (1/1/1/1)  (1/1/1/1/1)
       (2/1)  (3/1/1)  (2/1/1/1)  (5/1/1/1/1)
       (2/2)  (3/3/1)  (2/2/1/1)  (5/5/1/1/1)
              (3/3/3)  (2/2/2/1)  (5/5/5/1/1)
                       (2/2/2/2)  (5/5/5/5/1)
                       (4/1/1/1)  (5/5/5/5/5)
                       (4/2/1/1)
                       (4/2/2/1)
                       (4/2/2/2)
                       (4/4/1/1)
                       (4/4/2/1)
                       (4/4/2/2)
                       (4/4/4/1)
                       (4/4/4/2)
                       (4/4/4/4)
		

Crossrefs

Diagonal n = k - 1 of the array A077592.
Chains of length n - 1 are counted by A163767.
Diagonal n = k of the array A334997.
The version counting all multisets of divisors (not just chains) is A343935.
A000005(n) counts divisors of n.
A067824(n) counts strict chains of divisors starting with n.
A074206(n) counts strict chains of divisors from n to 1.
A146291(n,k) counts divisors of n with k prime factors (with multiplicity).
A251683(n,k-1) counts strict k-chains of divisors from n to 1.
A253249(n) counts nonempty chains of divisors of n.
A334996(n,k) counts strict k-chains of divisors from n to 1.
A337255(n,k) counts strict k-chains of divisors starting with n.
A343658(n,k) counts k-multisets of divisors of n.
A343662(n,k) counts strict k-chains of divisors of n (row sums: A337256).

Programs

  • Mathematica
    Table[Length[Select[Tuples[Divisors[n],n],OrderedQ[#]&&And@@Divisible@@@Reverse/@Partition[#,2,1]&]],{n,10}]

A062509 a(n) = n^omega(n).

Original entry on oeis.org

1, 2, 3, 4, 5, 36, 7, 8, 9, 100, 11, 144, 13, 196, 225, 16, 17, 324, 19, 400, 441, 484, 23, 576, 25, 676, 27, 784, 29, 27000, 31, 32, 1089, 1156, 1225, 1296, 37, 1444, 1521, 1600, 41, 74088, 43, 1936, 2025, 2116, 47, 2304, 49, 2500, 2601, 2704, 53, 2916
Offset: 1

Views

Author

Labos Elemer, Jul 13 2001

Keywords

Comments

Not always equal to product of unitary divisors of n [compare with A061537]. This deviates from A061537 at 30, 42, 60, 66, etc.

Examples

			n=30: a(30) = 30^3 = 27000;
n=72: a(72) = 72^2 = 5184.
		

Crossrefs

Programs

Formula

a(n) = Sum_{d|n} tau(d^n)*mu(n/d). - Ridouane Oudra, Sep 17 2022

A363920 a(n) = n^(tpf(n) * dpf(n)), where tpf(n) is the total number of prime factors of n if n >= 2 and otherwise = 0; dpf(n) is the number of distinct prime factors of n if n >= 2 and otherwise = 0.

Original entry on oeis.org

1, 1, 2, 3, 16, 5, 1296, 7, 512, 81, 10000, 11, 2985984, 13, 38416, 50625, 65536, 17, 34012224, 19, 64000000, 194481, 234256, 23, 110075314176, 625, 456976, 19683, 481890304, 29, 19683000000000, 31, 33554432, 1185921, 1336336, 1500625, 2821109907456, 37, 2085136
Offset: 0

Views

Author

Peter Luschny, Jul 16 2023

Keywords

Crossrefs

Programs

  • Maple
    with(numtheory):
    dpf := n -> ifelse(n = 0, 0, nops(factorset(n))): # dpf = [0] U [A001221].
    tpf := n -> ifelse(n = 0, 0, bigomega(n)):        # tpf = [0] U [A001222].
    A363920 := n -> n^(tpf(n) * dpf(n)):
    seq(A363920(n), n = 0..38);
  • PARI
    dpf(n, f) = if (n>=2, omega(f), 0);
    tpf(n, f) = if (n>=2, bigomega(f), 0);
    a(n) = my(f=factor(n)); n^(tpf(n,f) * dpf(n,f)); \\ Michel Marcus, Jul 27 2023

Formula

a(n) = n <=> n term of A000040(n) prepended with 1, n = 1, 2, 3, 5, 7, ...
a(n) != n <=> n term of A002808(n) prepended with 0, n = 0, 4, 6, 8, ...
Moebius(a(n)) = -[n is prime] for n >= 2, where [ ] denotes the Iverson bracket.

A343940 Sum of numbers of ways to choose a k-chain of divisors of n - k, for k = 0..n - 1.

Original entry on oeis.org

1, 2, 4, 7, 12, 19, 30, 45, 66, 95, 135, 187, 256, 346, 463, 613, 803, 1040, 1336, 1703, 2158, 2720, 3409, 4244, 5251, 6461, 7911, 9643, 11707, 14157, 17058, 20480, 24502, 29212, 34707, 41094, 48496, 57053, 66926, 78296, 91369, 106376, 123581, 143276, 165786
Offset: 1

Views

Author

Gus Wiseman, May 07 2021

Keywords

Examples

			The a(8) = 45 chains:
  ()  (1)  (1/1)  (1/1/1)  (1/1/1/1)  (1/1/1/1/1)  (1/1/1/1/1/1)
      (7)  (2/1)  (5/1/1)  (2/1/1/1)  (3/1/1/1/1)  (2/1/1/1/1/1)
           (2/2)  (5/5/1)  (2/2/1/1)  (3/3/1/1/1)  (2/2/1/1/1/1)
           (3/1)  (5/5/5)  (2/2/2/1)  (3/3/3/1/1)  (2/2/2/1/1/1)
           (3/3)           (2/2/2/2)  (3/3/3/3/1)  (2/2/2/2/1/1)
           (6/1)           (4/1/1/1)  (3/3/3/3/3)  (2/2/2/2/2/1)
           (6/2)           (4/2/1/1)               (2/2/2/2/2/2)
           (6/3)           (4/2/2/1)
           (6/6)           (4/2/2/2)
                           (4/4/1/1)
                           (4/4/2/1)           (1/1/1/1/1/1/1)
                           (4/4/2/2)
                           (4/4/4/1)
                           (4/4/4/2)
                           (4/4/4/4)
		

Crossrefs

Antidiagonal sums of the array (or row sums of the triangle) A334997.
A000005 counts divisors of n.
A067824 counts strict chains of divisors starting with n.
A074206 counts strict chains of divisors from n to 1.
A146291 counts divisors of n with k prime factors (with multiplicity).
A251683 counts strict length k + 1 chains of divisors from n to 1.
A253249 counts nonempty chains of divisors of n.
A334996 counts strict length k chains of divisors from n to 1.
A337255 counts strict length k chains of divisors starting with n.
Array version of A334997 has:
- column k = 2 A007425,
- transpose A077592,
- subdiagonal n = k + 1 A163767,
- strict case A343662 (row sums: A337256),
- version counting all multisets of divisors (not just chains) A343658,
- diagonal n = k A343939.

Programs

  • Mathematica
    Total/@Table[Length[Select[Tuples[Divisors[n-k],k],And@@Divisible@@@Partition[#,2,1]&]],{n,12},{k,0,n-1}]

A347616 a(n) = Sum_{k=1..n} k^Omega(k).

Original entry on oeis.org

1, 3, 6, 22, 27, 63, 70, 582, 663, 763, 774, 2502, 2515, 2711, 2936, 68472, 68489, 74321, 74340, 82340, 82781, 83265, 83288, 415064, 415689, 416365, 436048, 458000, 458029, 485029, 485060, 34039492, 34040581, 34041737, 34042962, 35722578, 35722615, 35724059, 35725580, 38285580
Offset: 1

Views

Author

Wesley Ivan Hurt, Sep 08 2021

Keywords

Examples

			a(5) = Sum_{k=1..5} k^Omega(k) = 1^0 + 2^1 + 3^1 + 4^2 + 5^1 = 27.
		

Crossrefs

Cf. A001222 (Omega), A347614.
Partial sums of A176029.

Programs

  • Mathematica
    Table[Sum[k^PrimeOmega[k], {k, n}], {n, 40}]
  • PARI
    a(n) = sum(k=1, n, k^bigomega(k)); \\ Michel Marcus, Sep 09 2021

A343936 Number of ways to choose a multiset of n divisors of n - 1.

Original entry on oeis.org

1, 2, 3, 10, 5, 56, 7, 120, 45, 220, 11, 4368, 13, 560, 680, 3876, 17, 26334, 19, 42504, 1771, 2024, 23, 2035800, 325, 3276, 3654, 201376, 29, 8347680, 31, 376992, 6545, 7140, 7770, 145008513, 37, 9880, 10660, 53524680, 41, 73629072, 43, 1712304, 1906884
Offset: 1

Views

Author

Gus Wiseman, May 05 2021

Keywords

Examples

			The a(1) = 1 through a(5) = 5 multisets:
  {}  {1}  {1,1}  {1,1,1}  {1,1,1,1}
      {2}  {1,3}  {1,1,2}  {1,1,1,5}
           {3,3}  {1,1,4}  {1,1,5,5}
                  {1,2,2}  {1,5,5,5}
                  {1,2,4}  {5,5,5,5}
                  {1,4,4}
                  {2,2,2}
                  {2,2,4}
                  {2,4,4}
                  {4,4,4}
The a(6) = 56 multisets:
  11111  11136  11333  12236  13366  22266  23666
  11112  11166  11336  12266  13666  22333  26666
  11113  11222  11366  12333  16666  22336  33333
  11116  11223  11666  12336  22222  22366  33336
  11122  11226  12222  12366  22223  22666  33366
  11123  11233  12223  12666  22226  23333  33666
  11126  11236  12226  13333  22233  23336  36666
  11133  11266  12233  13336  22236  23366  66666
		

Crossrefs

The version for chains of divisors is A163767.
Diagonal n = k + 1 of A343658.
Choosing n divisors of n gives A343935.
A000005 counts divisors.
A000312 = n^n.
A007318 counts k-sets of elements of {1..n}.
A009998 = n^k (as an array, offset 1).
A059481 counts k-multisets of elements of {1..n}.
A146291 counts divisors of n with k prime factors (with multiplicity).
A253249 counts nonempty chains of divisors of n.
Strict chains of divisors:
- A067824 counts strict chains of divisors starting with n.
- A074206 counts strict chains of divisors from n to 1.
- A251683 counts strict length k + 1 chains of divisors from n to 1.
- A334996 counts strict length-k chains of divisors from n to 1.
- A337255 counts strict length-k chains of divisors starting with n.
- A337256 counts strict chains of divisors of n.
- A343662 counts strict length-k chains of divisors.

Programs

  • Mathematica
    multchoo[n_,k_]:=Binomial[n+k-1,k];
    Table[multchoo[DivisorSigma[0,n],n-1],{n,50}]

Formula

a(n) = ((sigma(n - 1), n)) = binomial(sigma(n - 1) + n - 1, n) where sigma = A000005 and binomial = A007318.

A354273 Square array read by ascending antidiagonals: A(n,k) = k^Omega(n).

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 4, 3, 4, 1, 1, 2, 9, 4, 5, 1, 1, 4, 3, 16, 5, 6, 1, 1, 2, 9, 4, 25, 6, 7, 1, 1, 8, 3, 16, 5, 36, 7, 8, 1, 1, 4, 27, 4, 25, 6, 49, 8, 9, 1, 1, 4, 9, 64, 5, 36, 7, 64, 9, 10, 1, 1, 2, 9, 16, 125, 6, 49, 8, 81, 10, 11, 1, 1, 8, 3, 16, 25, 216, 7, 64, 9, 100, 11, 12, 1
Offset: 1

Views

Author

Stefano Spezia, May 22 2022

Keywords

Examples

			Array begins:
    1, 1,  1,  1,   1,   1,   1,   1, ...
    1, 2,  3,  4,   5,   6,   7,   8, ...
    1, 2,  3,  4,   5,   6,   7,   8, ...
    1, 4,  9, 16,  25,  36,  49,  64, ...
    1, 2,  3,  4,   5,   6,   7,   8, ...
    1, 4,  9, 16,  25,  36,  49,  64, ...
    1, 2,  3,  4,   5,   6,   7,   8, ...
    1, 8, 27, 64, 125, 216, 343, 512, ...
    ...
		

Crossrefs

Cf. A000012 (n = 1 or k = 1), A061142 (k = 2), A165824 - A165871 (k = 3..50), A176029 (diagonal).

Programs

  • Mathematica
    A[n_,k_]:=k^PrimeOmega[n]; Flatten[Table[A[n-k+1,k],{n,13},{k,n}]]

Formula

A(n, k) = A051129(A001222(n), k).
The columns are totally multiplicative: A(i*j, k) = A(i, k)*A(j, k).
Previous Showing 11-17 of 17 results.