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.

User: Dimitris Cardaris

Dimitris Cardaris's wiki page.

Dimitris Cardaris has authored 4 sequences.

A381352 Conductors admitting a normalized weight-2 eta-quotient newform.

Original entry on oeis.org

11, 14, 15, 20, 24, 27, 32, 36, 48, 64, 80, 144
Offset: 1

Author

Dimitris Cardaris, May 11 2025

Keywords

Comments

By the modularity theorem, each Q-isogeny class of elliptic curves of conductor N corresponds to a unique normalized rational weight-2 newform on Gamma_0(N). This sequence (classified by Martin & Ono) lists exactly those 12 conductors N for which that newform at level N can be written as a single eta-quotient.

Examples

			a(1) = 11 since f(z) = q-2*q^2-q^3+2*q^4+ ... = eta^2(z)*eta^2(11*z) on Gamma_0(11)
		

Crossrefs

A383619 Conjectured list of least elements of nontrivial arithmetic derivative orbits.

Original entry on oeis.org

1, 8, 20, 36, 40, 54, 64, 84, 104, 116, 135, 144, 196, 224, 228, 232, 243, 264, 270, 280
Offset: 1

Author

Dimitris Cardaris, May 02 2025

Keywords

Comments

a(n) is the least integer in the n-th nontrivial equivalence class under iteration of the Lagarias arithmetic derivative D. Two numbers m and n lie in the same class if repeated application of D to each, eventually produces the same value; every such class has a unique smallest member, and this sequence lists those members in ascending order.
Note that k is a fixed point of the arithmetic derivative D (i.e., D(k)=k) if and only if k=p^p for some prime p. Such one-element classes {p^p} are considered trivial and are excluded from the list of nontrivial attractors.
The values of a(n) are conjectural, contingent on the absence of further merges or the existence of nontrivial cycles beyond the computational horizon; this is analogous to Collatz dynamics.

Examples

			a(2) := min(C_2) = 8.
		

Programs

  • SageMath
    D = lambda n: 0 if n<2 else sum(e*(n//p) for p,e in Integer(n).factor())
    def A(N, k=None):
        c, o = {1:1}, [1]
        for i in range(2, N+1):
            if i in c: continue
            P, m = [], i
            while 1 <= m <= N and m not in c and m not in P:
                P.append(m)
                m = D(m)
            if   m in c:      v = c[m]
            elif m in P:      v = min(P[P.index(m):])
            else:             v = min(P)
            for x in P: c[x] = v
            if c[i] == i and len(P) > 1:
                o.append(i)
                if k and len(o) >= k: break
        return o
    A(10**18, k=20)

Formula

Let {C_n} be the family of nontrivial equivalence classes under iteration of the arithmetic derivative operator. Then, a(n) := min(C_n).

A369863 Inert rational primes in the field Q(sqrt(-21)).

Original entry on oeis.org

13, 29, 43, 47, 53, 59, 61, 67, 73, 79, 83, 97, 113, 127, 131, 137, 149, 151, 157, 163, 167, 181, 197, 211, 227, 229, 233, 241, 251, 281, 311, 313, 317, 331, 349, 379, 383, 389, 397, 401, 409, 419, 433, 449, 463, 467, 479, 487, 499, 503, 547, 557, 563, 569, 571, 577, 587
Offset: 1

Author

Dimitris Cardaris, Feb 03 2024

Keywords

Comments

Primes p such that Legendre(-21,p) = -1.

Crossrefs

Cf. inert rational primes in the imaginary quadratic field Q(sqrt(-d)) for the first squarefree positive integers d: A002145 (1), A003628 (2), A003627 (3), A003626 (5), A191059 (6), A003625 (7), A296925 (10), A191060 (11), A105885 (13), A191061 (14), A191062 (15), A296930 (17), A191063 (19), this sequence (21), A191064 (22), A191065 (23).

Programs

  • Mathematica
    Select[Range[3,600], PrimeQ[#] && JacobiSymbol[-21,#]==-1 &] (* Stefano Spezia, Feb 04 2024 *)
  • SageMath
    [p for p in prime_range(3, 600) if legendre_symbol(-21, p) == -1]

A255135 Dimensions where the volume of an L^p unit ball is maximized.

Original entry on oeis.org

1, 5, 16, 41, 102, 242, 558, 1263, 2817, 6214, 13583, 29471, 63548, 136305, 291019, 618849, 1311314, 2769847, 5834119, 12257072, 25691785, 53738815, 112188059, 233796875, 486435094, 1010552580, 2096469429, 4343666482
Offset: 1

Author

Dimitris Cardaris, Feb 14 2015

Keywords

Comments

The volume of an n-dimensional L^p-ball of radius R is vol(R, p, n) = ((2^n)*(gamma((1/p)+1))^n /gamma((n/p)+1)*R^n for all real p > 0. For the Hilbert space L^2 we recover the familiar Euclidean volume of a unit n-ball (Pi^(n/2))/gamma((n/2)+1) which attains a maximum value at dimension n=5. The present sequence describes the same phenomenon for positive integer values of p.
From Robert L. Diersing, May 26 2020: (Start)
We can find very tight bounds for a(n):
define c := 2*gamma(1 + 1/p), then
floor(p*(c^p - 1/2) - 1/2) <= a(n) <= ceiling(p*(c^p - 1/2)).
First we treat V(n, p, 1) as a real-valued smooth function w.r.t. n, then we can maximize it. Since log(x) is an increasing function, the critical points of log(V(n, p)) will be the same as the critical points for V(n, p).
(d/dn)log(V(n, p)) = log(c) - 1/(p(digamma((n+p)/p))).
(d^2/dn^2)log(V(n, p)) = -polygamma(1, (n+p)/p))/p^2 < 0 for all n > 0, p > 0.
This is because polygamma(1, x) = Sum_{k>=1} 1/(x + k)^2 > 0 for all x > 0.
Therefore (d/dx)V(n, p) is a decreasing function w.r.t. n, which means there is only one local extremum. We can bound that local extremum similar to the way that we find bounds for the case where p=2 and the radius varies: see Wikipedia link.
Let's call this extremum n_.
dV/dn = log(c) - 1/(p*(digamma((n_+p)/p))) = 0;
p*log(c) = digamma((n_ + p) / p);
p*(inverse_digamma(plog(c)) - 1) = n_.
We can see from [2] that
log(y - 1/2) < digammma(y) < log(y + e^-m - 1),
where m is the Euler-Mascheroni constant.
Thus
log((n_+ p)/p - 1/2) < p*log(c) < log((n_ + p)/p + e^-m - 1);
c^p - e^-m + 1 < (n_ + p)/p < c^p + 1/2;
p*(c^p - e^-m) < n_ < p*(c^p - 1/2).
We can now improve on these bounds; define:
n` = p*(c^p - 1/2).
We can prove
n` - n_ < 1/2;
p*(c^p - 1/2 - inverse_digamma(p*log(c))) < p/c^p < 1/2;
c^p + 1/2 - 1/c^p < inverse_digamma(log(c^p)), say x := c^p;
x + 1/2 - 1/x < inverse_digamma(log(x));
digamma(x + 1/2 - 1/x) < log(x)
(inverse_digamma is an increasing function).
We see from [1] that digamma(1/log(1 + 1/x)) < log(x), therefore we only need to show
digamma(x + 1/2 - 1/x) < digamma(1/log(1 + 1/x)),
and since inverse_digamma is an increasing function, it suffices to show
x + 1/2 - 1/x < 1/log(1 + 1/x),
which is true for x > 0, and can be seen from an inequality solver such as Wolfram Alpha: https://www.wolframalpha.com/input/?i=x+%2B+%C2%BD+-+1%2Fx+%3C+1%2Flog%281+%2B+1%2Fx%29.
thus
n` - 1/2 < n_ < n`.
Now we have to confirm that n_ is the global maximum by checking the boundaries.
V(p, 0) = c^p < n_;
Limit_{n->oo} V(p, n) = lim_{n->oo} (2*sqrt(2*Pi/p))^n / (sqrt(2*Pi*n/p) n^n) = 0 < n_.
Therefore n_ is the global maximum, and thus we can solve for a(n).
floor(n` - 1/2) <= a(n) <= ceiling(n`).
So to find a(n) we only need to iterate over at most three values. (End)

Examples

			a(2) = 5 because the sequence vol(R=1, p=2, n) increases monotonically up to n=5 and then decreases monotonically.
The approximate values for vol(1,p,a(p)) are 2, 5.263789015, 50.05958637, 5970.510613, p = 1..4. - _Wolfdieter Lang_, Mar 20 2015
		

Programs

  • Mathematica
    f[p_] = Round[FindArgMax[((2^n)*(Gamma[1+(1/p)])^n)/Gamma[1+(n/p)], n]]

Formula

From Robert L. Diersing, May 26 2020: (Start)
Define c = 2*gamma(1 + 1/p), and n` = p*(c^p - 1/2)
for x in [floor(n` - 1/2), floor(n` + 1/2), floor(n` + 3/2)]
a(n) = the value x that gives the largest volume. (End)

Extensions

Edited by Wolfdieter Lang, Mar 20 2015
More terms from Robert L. Diersing, May 26 2020