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

A035218 Coefficients in expansion of Dirichlet series Product_p (1-(Kronecker(m,p)+1)*p^(-s)+Kronecker(m,p)*p^(-2s))^(-1) for m = 36.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 1, 3, 2, 1, 2, 2, 2, 2, 1, 2, 2, 4, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 3, 3, 2, 2, 2, 1, 4, 2, 2, 2, 2, 2, 2, 2, 2, 1, 4, 2, 2, 2, 2, 4, 2, 1, 2, 2, 3, 2, 4, 2, 2, 2, 1, 2, 2, 2, 4, 2, 2, 2, 2, 2, 4, 2, 2, 2, 4, 1, 2, 3, 2, 3, 2, 2, 2, 2, 4
Offset: 1

Views

Author

Keywords

Comments

a(n) is the number of factors (over Q) of the polynomial x^(2n) - x^n + 1. - Yuval Dekel (dekelyuval(AT)hotmail.com), Aug 30 2003
This sequence is multiplicative. Just as (A001227)(n) is the number of ways to write n as differences of 3-gonal numbers, this sequence is the number of ways to write n as difference of (-1)-gonal numbers. If p_e(n):=1/2*n*((e-2)*n+(4-e)) is the n-th e-gonal number, then 2*a(n) = |{(m,k) of Z X Z; pe(-1)(m+k)-pe(m-1)=n}| for e=-1. - Volker Schmitt (clamsi(AT)gmx.net), Oct 11 2004
a(n) is the number of divisors of n not divisible by 2 or 3. For example, a(36)=1 because 1 is the only such divisor of 36. a(10) = 2 because we count the divisors 1 and 5. - Geoffrey Critzer, Feb 15 2015

Crossrefs

Programs

  • Maple
    res:=1; ifac:=op(ifactors(i))[2]; for pfac in ifac do; if pfac[1]>3 then res:=res*(pfac[2]+1); a(n):=res;
  • Mathematica
    nn = 81; f[list_, i] := list[[i]]; a = Prepend[Drop[Table[Boole[Min[FactorInteger[n][[All, 1]]] > 3], {n, 1, nn}], 1], 1]; b = Table[1, {nn}]; Table[DirichletConvolve[f[a, n], f[b, n], n, m], {m, 1, nn}] (* Geoffrey Critzer, Feb 15 2015 *)
    f[p_, e_] := If[p >= 5, e + 1, 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Aug 27 2023 *)
  • PARI
    m=36; direuler(p=2,101,1/(1-(kronecker(m,p)*(X-X^2))-X))
    
  • PARI
    a(n) = sumdiv(n, d, (d % 2) && (d % 3)); \\ Michel Marcus, Feb 16 2015

Formula

a(n) = d(6n) - d(3n) - d(2n) + d(n) where d() is the divisor function. - Yuval Dekel (dekelyuval(AT)hotmail.com), Aug 30 2003
Multiplicative with a(2^e)=1, a(3^e)=1, a(p^e)=e+1 if p>3. Inverse Möbius transform is periodic with 1, 0, 0, 0, 1, 0. - Volker Schmitt (clamsi(AT)gmx.net), Oct 11 2004
Dirichlet g.f.: zeta(s)^2*(1 - 1/2^s)*(1 - 1/3^s). - Geoffrey Critzer, Feb 15 2015
From Antti Karttunen, Oct 03 2018: (Start)
a(n) = A279060(n) + A319995(n).
a(n) = A320015(n) + ch15(n), where ch15 is the characteristic function of numbers of the form +-1 mod 6, i.e., ch15(n) = A232991(n-1).
(End)
Sum_{k=1..n} a(k) ~ n*(log(n) + 2*gamma + log(12)/2 - 1)/3, where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Jan 29 2019

Extensions

More terms from Antti Karttunen, Oct 03 2018

A320001 Number of proper divisors of n of the form 6*k + 1.

Original entry on oeis.org

0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 3, 1, 2, 1, 2, 1, 1, 3, 1, 2, 1, 1, 1, 2, 2
Offset: 1

Views

Author

Antti Karttunen, Oct 03 2018

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, 1 &, # < n && Mod[#, 6] == 1 &]; Array[a, 100] (* Amiram Eldar, Nov 25 2023 *)
  • PARI
    A320001(n) = if(!n,n,sumdiv(n, d, (d
    				

Formula

a(n) = A279060(n) - [+1 = n (mod 6)], where [ ] is the Iverson bracket, giving 1 only when n = 1 mod 6, and 0 otherwise.
a(n) = A320015(n) - A320005(n).
a(n) = A007814(A319991(n)).
G.f.: Sum_{k>=1} x^(12*k-10) / (1 - x^(6*k-5)). - Ilya Gutkovskiy, Apr 14 2021
Sum_{k=1..n} a(k) = n*log(n)/6 + c*n + O(n^(1/3)*log(n)), where c = gamma(1,6) - (2 - gamma)/6 = 0.519597..., gamma(1,6) = -(psi(1/6) + log(6))/6 is a generalized Euler constant, and gamma is Euler's constant (A001620) (Smith and Subbarao, 1981). - Amiram Eldar, Nov 25 2023

A320005 Number of proper divisors of n of the form 6*k + 5.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 2, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 2
Offset: 1

Views

Author

Antti Karttunen, Oct 03 2018

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, 1 &, # < n && Mod[#, 6] == 5 &]; Array[a, 100] (* Amiram Eldar, Nov 25 2023 *)
  • PARI
    A320005(n) = if(!n,n,sumdiv(n, d, (d
    				

Formula

a(n) = A319995(n) - [+5 = n (mod 6)], where [ ] is the Iverson bracket, giving 1 only when n = -1 mod 6, and 0 otherwise.
a(n) = A320015(n) - A320001(n).
a(n) = A007814(A319992(n)).
G.f.: Sum_{k>=1} x^(12*k-2) / (1 - x^(6*k-1)). - Ilya Gutkovskiy, Apr 14 2021
Sum_{k=1..n} a(k) = n*log(n)/6 + c*n + O(n^(1/3)*log(n)), where c = gamma(5,6) - (2 - gamma)/6 = -0.387302..., gamma(5,6) = -(psi(5/6) + log(6))/6 is a generalized Euler constant, and gamma is Euler's constant (A001620) (Smith and Subbarao, 1981). - Amiram Eldar, Nov 25 2023

A320013 Filter sequence constructed from the binary expansions of those proper divisors of n that are not multiples of 3.

Original entry on oeis.org

1, 2, 2, 3, 2, 3, 2, 4, 2, 5, 2, 4, 2, 6, 7, 8, 2, 3, 2, 9, 10, 11, 2, 8, 7, 12, 2, 13, 2, 14, 2, 15, 16, 17, 18, 4, 2, 19, 20, 21, 2, 22, 2, 23, 7, 24, 2, 15, 10, 25, 26, 27, 2, 3, 28, 29, 30, 31, 2, 32, 2, 33, 10, 34, 35, 36, 2, 37, 38, 39, 2, 8, 2, 40, 41, 42, 43, 44, 2, 45, 2, 46, 2, 47, 48, 49, 50, 51, 2, 14, 52, 53, 54, 55, 56, 34, 2, 57, 16, 58, 2, 59, 2, 60, 61
Offset: 1

Views

Author

Antti Karttunen, Oct 03 2018

Keywords

Comments

Restricted growth sequence transform of ordered pair [A319991(n), A319992(n)].
For all i, j: a(i) = a(j) => A320015(i) = A320015(j).

Crossrefs

Programs

  • PARI
    up_to = 65537;
    rgs_transform(invec) = { my(om = Map(), outvec = vector(length(invec)), u=1); for(i=1, length(invec), if(mapisdefined(om,invec[i]), my(pp = mapget(om, invec[i])); outvec[i] = outvec[pp] , mapput(om,invec[i],i); outvec[i] = u; u++ )); outvec; };
    A019565(n) = {my(j,v); factorback(Mat(vector(if(n, #n=vecextract(binary(n), "-1..1")), j, [prime(j), n[j]])~))}; \\ From A019565
    A319991(n) = { my(m=1); fordiv(n,d,if((dA019565(d))); m; };
    A319992(n) = { my(m=1); fordiv(n,d,if((dA019565(d))); m; };
    v320013 = rgs_transform(vector(up_to,n,[A319991(n),A319992(n)]));
    A320013(n) = v320013[n];
Showing 1-4 of 4 results.