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

A381747 a(n) is the number of solutions to tau(x) + tau(n-x) = tau(n) where 1 <= x <= floor(n/2).

Original entry on oeis.org

0, 1, 0, 1, 0, 1, 0, 1, 0, 3, 0, 1, 0, 2, 1, 2, 0, 2, 0, 1, 1, 3, 0, 1, 0, 4, 0, 3, 0, 3, 0, 3, 1, 4, 0, 1, 0, 2, 1, 2, 0, 3, 0, 5, 6, 4, 0, 0, 0, 5, 0, 5, 0, 5, 1, 4, 0, 4, 0, 2, 0, 3, 6, 4, 0, 5, 0, 8, 1, 5, 0, 3, 0, 5, 8, 8, 0, 5, 0, 3, 0, 5, 0, 3, 1, 5, 0, 6
Offset: 1

Views

Author

Felix Huber, Mar 30 2025

Keywords

Comments

Observation: For even positive multiples of 48, k <= 17000, a(k) = 0 only for k = 1*48, 2304 = 48*48 and 3600 = 75*48. The next numbers k which are multiples of 48 and for which a(k) = 0 are 46656, 63504, 233280, 513216, 793152, 2286144, 3111696.

Examples

			a(10) = 3 because tau(x) + tau(10-x) = tau(10) has 3 solutions for 0 <= x <= 5:
  x = 1: tau(1) + tau(9) = 1 + 3 = 4 = tau(10);
  x = 3: tau(3) + tau(7) = 2 + 2 = 4 = tau(10);
  x = 5: tau(5) + tau(5) = 2 + 2 = 4 = tau(10).
		

Crossrefs

Programs

  • Maple
    with(NumberTheory):
    A381747:=proc(n)
        local a,x;
        a:=0;
        for x to n/2 do
            if tau(x)+tau(n-x)=tau(n) then
                a:=a+1
            fi
        od;
        return a
    end proc;
    seq(A381747(n),n=1..88);
  • PARI
    a(n) = my(nd=numdiv(n)); sum(x=1, n\2, numdiv(x)+numdiv(n-x) == nd); \\ Michel Marcus, Apr 26 2025

Formula

a(A000430(n)) = 0 for n > 3.
Showing 1-1 of 1 results.