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

A353899 Indices of records in A353898.

Original entry on oeis.org

1, 2, 4, 6, 12, 30, 36, 60, 180, 420, 900, 1260, 4620, 6300, 13860, 44100, 55440, 69300, 180180, 485100, 720720, 900900, 3063060, 6306300, 12252240, 15315300, 58198140, 107207100, 232792560, 290990700, 1163962800, 2036934900, 5354228880, 6692786100, 22406283900
Offset: 1

Views

Author

Amiram Eldar, May 10 2022

Keywords

Comments

First differs from A333931 at n=23.
The corresponding record values are 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 27, 36, 48, 54, 72, 81, 96, 108, 144, 162, ... (see the link for more values).

Crossrefs

Subsequence of A025487 and A138302.
Similar sequences: A002182, A002110 (unitary), A037992 (infinitary), A293185, A306736, A307845, A309141, A318278, A322484, A335386.

Programs

  • Mathematica
    f[p_, e_] := Floor[Log2[e]] + 2; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; seq = {}; sm = 0; Do[s1 = s[n]; If[s1 > sm, sm = s1; AppendTo[seq, n]], {n, 1, 10^6}]; seq

A358263 Numbers with a record number of noninfinitary square divisors.

Original entry on oeis.org

1, 16, 144, 256, 1296, 2304, 20736, 57600, 331776, 518400, 2822400, 8294400, 12960000, 25401600, 132710400, 207360000, 228614400, 406425600, 635040000, 2057529600, 3073593600, 6502809600, 10160640000, 27662342400, 31116960000, 51438240000, 76839840000, 248961081600
Offset: 1

Views

Author

Amiram Eldar, Nov 06 2022

Keywords

Comments

Numbers m such that A358261(m) > A358261(k) for all k < m.
The corresponding record values are 0, 1, 2, 3, 5, 6, 11, 12, 13, 22, 24, 26, 37, 44, 46, 47, 48, ... (see the link for more values).

Crossrefs

Subsequence of A025487.
Similar sequences: A002182, A002110 (unitary), A037992 (infinitary), A293185, A306736, A307845, A309141, A318278, A322484, A335386, A348632, A358253.

Programs

  • Mathematica
    f1[p_, e_] := 1 + Floor[e/2]; f2[p_, e_] := 2^DigitCount[If[OddQ[e], e - 1, e], 2, 1]; f[1] = 0; f[n_] := Times @@ f1 @@@ (fct = FactorInteger[n]) - Times @@ f2 @@@ fct; s = {}; fmax = -1; Do[If[(fn = f[n]) > fmax, fmax = fn; AppendTo[s, n]], {n, 1, 6*10^5}]; s
  • PARI
    s(n) = {my(f = factor(n));  prod(i=1, #f~, 1+f[i,2]\2) - prod(i=1, #f~, 2^hammingweight(if(f[i,2]%2, f[i,2]-1, f[i,2])))};
    lista(nmax) = {my(smax = -1, sn); for(n = 1, nmax, sn = s(n); if(sn > smax, smax = sn; print1(n, ", "))); }

A359412 Numbers with a record number of divisors that are both infinitary and exponential.

Original entry on oeis.org

1, 8, 216, 27000, 9261000, 12326391000, 27081081027000, 110924107886592000, 544970142046826496000, 3737950204299182936064000, 45479640135708158783090688000, 1109202943269786284560798789632000, 33044264882950203203350756741926912000, 1673791149116076642859325881248823873536000
Offset: 1

Views

Author

Amiram Eldar, Dec 30 2022

Keywords

Comments

Indices of records in A359411.
a(2)-a(7) are the first 6 terms of A115964.
The first 15 terms are cubes. Are there noncubes in this sequence?
The corresponding record values are 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, ... . Apparently, this sequence of records is the powers of 2 (A000079).

Crossrefs

Subsequence of A025487.
Similar sequences: A037992, A318278.

Programs

  • Mathematica
    s[n_] := DivisorSum[n, 1 &, BitAnd[n, #] == # &]; f[p_, e_] := s[e]; d[1] = 1; d[n_] := Times @@ f @@@ FactorInteger[n];
    v = Cases[Import["https://oeis.org/A025487/b025487.txt", "Table"], {, }][[;; , 2]];
    seq = {}; dm = 0; Do[If[(dk = d[v[[k]]]) > dm, dm = dk; AppendTo[seq, v[[k]]]], {k, 1, Length[v]}]; seq

A362853 Numbers with a record number of divisors that are both bi-unitary and exponential.

Original entry on oeis.org

1, 8, 64, 216, 1728, 27000, 46656, 110592, 216000, 2985984, 5832000, 13824000, 74088000, 373248000, 2000376000, 4741632000, 46656000000, 98611128000, 128024064000, 2662500456000, 6311112192000, 16003008000000, 93329542656000, 170400029184000, 5489031744000000
Offset: 1

Views

Author

Amiram Eldar, May 05 2023

Keywords

Comments

Indices of records in A362852.
The first 80 terms are cubes. Are there noncubes in this sequence?
The corresponding record values are 1, 2, 3, 4, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 48, 60, 72, ... (see the link for more values).

Crossrefs

Cf. A362852.
Subsequence of A025487.
Similar sequences: A293185, A318278.

Programs

  • Mathematica
    f[p_, e_] := DivisorSigma[0, e] - If[OddQ[e], 0, 1]; d[1] = 1; d[n_] := Times @@ f @@@ FactorInteger[n];
    v = Cases[Import["https://oeis.org/A025487/b025487.txt", "Table"], {, }][[;; , 2]];
    seq = {}; dm = 0; Do[If[(dk = d[v[[k]]]) > dm, dm = dk; AppendTo[seq, v[[k]]]], {k, 1, Length[v]}]; seq

A332622 Numbers where records occur for the product of exponential divisors function (A157488).

Original entry on oeis.org

1, 2, 3, 4, 8, 9, 12, 16, 20, 28, 36, 72, 100, 144, 324, 400, 576, 900, 1764, 2700, 3528, 3600, 7056, 10800, 14400, 28224, 32400, 44100, 88200, 108900, 129600, 176400, 396900, 435600, 608400, 705600, 1587600, 3920400, 5336100, 5475600, 6350400, 14288400, 15681600
Offset: 1

Views

Author

Amiram Eldar, Jun 05 2020

Keywords

Comments

The corresponding record values are 1, 2, 3, 8, 16, 27, 72, 128, 200, 392, 46656, 186624, 1000000, ...

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := p^(DivisorSigma[1, e]/DivisorSigma[0, e]); exprod[n_] := (Times @@ (f @@@ (fct = FactorInteger[n])))^(Times @@ DivisorSigma[0, Last /@ fct]); em = 0; s = {}; Do[If[(e = exprod[n]) > em, em = e; AppendTo[s, n]], {n, 1, 10^6}]; s

Formula

The first 8 terms of A157488 are 1, 2, 3, 8, 5, 6, 7 and 16. The record values occur at 1, 2, 3, 4 and 8 - the first 5 terms of this sequence.
Previous Showing 11-15 of 15 results.