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-10 of 16 results. Next

A335128 Records in A006863.

Original entry on oeis.org

1, 24, 240, 504, 65520, 131040, 171864, 138181680, 6814407600, 20174525280, 45185409360, 558781423200, 685933859520, 2601256998740400, 4578654981700800, 15571124394460034400, 375159113055066740400, 124708934978441512498800, 127589793288205521873600, 8644416283014847832296800, 29217965124687229769336640
Offset: 1

Views

Author

Seiichi Manyama, May 24 2020

Keywords

Crossrefs

Programs

  • Mathematica
    d[0] = 1; d[n_] := Denominator[BernoulliB[2*n]/(4*n)]; Union @ FoldList[Max, Array[d, 500, 0]] (* Amiram Eldar, May 03 2021 *)
  • PARI
    s=0; for(k=0, 1e3, t=if(k==0, 1, denominator(bernfrac(2*k)/(-4*k))); if(t>s, s=t; print1(s", ")))

A060334 The sequence A006863 (shifted by one) seems to be counting the periodic points for a map. If so, then this is the sequence of the numbers of orbits of length n.

Original entry on oeis.org

24, 108, 160, 60, 48, 10800, 0, 1980, 3136, 1272, 48, 5440, 0, 480, 11408, 1020, 0, 7671552, 0, 53448, 7200, 216, 48, 179520, 0, 480, 2128, 240, 48, 227138600, 0
Offset: 1

Views

Author

Thomas Ward, Apr 10 2001

Keywords

Examples

			a(3) = 160 because the 4th term of A006863 is 504 and the 2nd term is 24, so there should be (504-24)/3 = 160 orbits of length 3.
		

Crossrefs

Formula

If b(n) is the (n+1)st term of A006863, then a(n)=(1/n)* Sum_{d|n}\mu(d)b(n/d)

A001067 Numerator of Bernoulli(2*n)/(2*n).

Original entry on oeis.org

1, -1, 1, -1, 1, -691, 1, -3617, 43867, -174611, 77683, -236364091, 657931, -3392780147, 1723168255201, -7709321041217, 151628697551, -26315271553053477373, 154210205991661, -261082718496449122051, 1520097643918070802691, -2530297234481911294093
Offset: 1

Views

Author

N. J. A. Sloane, Richard E. Borcherds (reb(AT)math.berkeley.edu)

Keywords

Comments

It was incorrectly claimed that a(n) is "also numerator of "modified Bernoulli number" b(2n) = Bernoulli(2*n)/(2*n*n!)"; actually, the numerators of these fractions and the numerators of "modified Bernoulli numbers" (see A057868 for details) differ from each other and from this sequence. - Andrey Zabolotskiy, Dec 03 2022
Ramanujan incorrectly conjectured that the sequence contains only primes (and 1). - Jud McCranie. See A112548, A119766.
a(n) = A046968(n) if n < 574; a(574) = 37 * A046968(574). - Michael Somos, Feb 01 2004
Absolute values give denominators of constant terms of Fourier series of meromorphic modular forms E_k/Delta, where E_k is the normalized k th Eisenstein series [cf. Gunning or Serre references] and Delta is the normalized unique weight-twelve cusp form for the full modular group (the generating function of Ramanujan's tau function.) - Barry Brent (barrybrent(AT)iphouse.com), Jun 01 2009
|a(n)| is a product of powers of irregular primes (A000928), with the exception of n = 1,2,3,4,5,7. - Peter Luschny, Jul 28 2009
Conjecture: If there is a prime p such that 2*n+1 < p and p divides a(n), then p^2 does not divide a(n). This conjecture is true for p < 12 million. - Seiichi Manyama, Jan 21 2017

Examples

			The sequence Bernoulli(2*n)/(2*n) (n >= 1) begins 1/12, -1/120, 1/252, -1/240, 1/132, -691/32760, 1/12, -3617/8160, ...
The sequence of modified Bernoulli numbers begins 1/48, -1/5760, 1/362880, -1/19353600, 1/958003200, -691/31384184832000, ...
		

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 259, (6.3.18) and (6.3.19); also p. 810.
  • L. V. Ahlfors, Complex Analysis, McGraw-Hill, 1979, p. 205
  • R. C. Gunning, Lectures on Modular Forms. Princeton Univ. Press, Princeton, NJ, 1962, p. 53.
  • R. Kanigel, The Man Who Knew Infinity, pp. 91-92.
  • J. W. Milnor and J. D. Stasheff, Characteristic Classes, Princeton, 1974, p. 285.
  • J.-P. Serre, A Course in Arithmetic, Springer-Verlag, 1973, p. 93.

Crossrefs

Similar to but different from A046968. See A090495, A090496.
Denominators given by A006953.

Programs

  • GAP
    List([1..25], n-> NumeratorRat(Bernoulli(2*n)/(2*n)));  # G. C. Greubel, Sep 19 2019
  • Magma
    [Numerator(Bernoulli(2*n)/(2*n)):n in [1..40]]; // Vincenzo Librandi, Sep 17 2015
    
  • Maple
    A001067_list := proc(n) 1/(1-1/exp(z)); series(%,z,2*n+4);
    seq(numer((2*i+1)!*coeff(%,z,2*i+1)),i=0..n) end:
    A001067_list(21); # Peter Luschny, Jul 12 2012
  • Mathematica
    Table[ Numerator[ BernoulliB[2n]/(2n)], {n, 1, 22}] (* Robert G. Wilson v, Feb 03 2004 *)
  • PARI
    {a(n) = if( n<1, 0, numerator( bernfrac(2*n) / (2*n)))}; /* Michael Somos, Feb 01 2004 */
    
  • Sage
    @CachedFunction
    def S(n, k) :
        if k == 0 :
            if n == 0 : return 1
            else: return 0
        return S(n, k-1) + S(n-1, n-k)
    def BernoulliDivN(n) :
        if n == 0 : return 1
        return (-1)^n*S(2*n-1,2*n-1)/(4^n-16^n)
    [BernoulliDivN(n).numerator() for n in (1..22)]
    # Peter Luschny, Jul 08 2012
    
  • Sage
    [numerator(bernoulli(2*n)/(2*n)) for n in (1..25)] # G. C. Greubel, Sep 19 2019
    

Formula

Zeta(1-2*n) = - Bernoulli(2*n)/(2*n).
G.f.: numerators of coefficients of z^(2*n) in z/(exp(z)-1). - Benoit Cloitre, Jun 02 2003
For 2 <= k <= 1000 and k != 7, the 2-order of the full constant term of E_k/Delta = 3 + ord_2(k - 7). - Barry Brent (barrybrent(AT)iphouse.com), Jun 01 2009
G.f. for Bernoulli(2*n)/(2*n) = a(n)/A006953(n): (-1)^n/((2*Pi)^(2*n)*(2*n))*integral(log(1-1/t)^(2*n) dt,t=0,1). - Gerry Martens, May 18 2011
E.g.f.: a(n) = numerator((2*n+1)!*[x^(2*n+1)](1/(1-1/exp(x)))). - Peter Luschny, Jul 12 2012
|a(n)| = numerator of Integral_{r=0..1} HurwitzZeta(1-n, r)^2 dr. More general: |Bernoulli(2*n)| = binomial(2*n,n)*n^2*I(n) for n >= 1 where I(n) denotes the integral. - Peter Luschny, May 24 2015

A309906 a(n) is the smallest number of divisors of p^n - 1 that may possibly occur for arbitrarily large primes p.

Original entry on oeis.org

4, 32, 8, 160, 8, 384, 8, 384, 16, 256, 8, 7680, 8, 128, 32, 1792, 8, 4096, 8, 3840, 32, 256, 8, 36864, 16, 128, 32, 2560, 8, 24576, 8, 4096, 32, 128, 32, 327680, 8, 128, 32, 36864, 8, 18432, 8, 2560, 128, 256, 8, 344064, 16, 1024, 32, 2560, 8, 20480, 32
Offset: 1

Views

Author

Jon E. Schoenfield, Aug 21 2019

Keywords

Comments

The existence of infinitely many primes p such that p^n - 1 has exactly a(n) divisors is conjectured. E.g., although it is known that p-1 has fewer than 4 divisors for only finitely many primes p (see Example section), it is not known whether there exist infinitely many primes p such that p-1 has exactly 4 divisors. (Thanks to Jianing Song, who pointed out the need for this clarification.) - Jon E. Schoenfield, Mar 04 2021
For each prime q, every number k that has exactly q divisors is a prime power k = p^(q-1) for some prime p. As a result, a(q-1) can be useful in identifying numbers of the form p^(q-1) - 1 that are terms of A161460 (see Example section).
From Bernard Schott, Aug 22 2019: (Start)
For n prime >= 3, a(n) = 8;
for n = q^2, q prime >= 3, a(n) = 16. (End)

Examples

			a(1) = 4: The only primes p for which p-1 has fewer than 4 divisors are 2, 3, and 5; for all primes p > 5, p-1 has at least 4 divisors, and the terms in A005385 (Safe primes) except 5 are primes p such that p-1 has exactly 4 divisors.
a(2) = 32: p^2 - 1 = (p-1)*(p+1) has fewer than 32 divisors only for p = 2, 3, 5, 7, 11, 13, 17, 19, 23, 31, 37, 47, and 73; for all primes p such that the product of the 3-smooth parts of p-1 and p+1 is 24 and p-1 and p+1 each have one prime factor > 3, p^2 - 1 has exactly 32 divisors (see A341658).
a(4) = 160: primes p such that p^4 - 1 has exactly 160 divisors are plentiful (see A341662), but only p = 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 59, 61, 71, 79, and 101 yield tau(p^4 - 1) < 160. Of these, p = 13, 29, 59, and 61 all give tau(p^4 - 1) = 80; 37 and 101 both give 120 divisors; and 41 and 71 both give 144. For each of the ten remaining primes (p = 2, 3, 5, 7, 11, 17, 19, 23, 31, 79), the value of tau(p^4 - 1) is unique, so each of those ten values of p^4 - 1 is a term in A161460.
		

Crossrefs

Programs

  • PARI
    f(n) = {if (n%2, 2, res = 1; forprime(p=2, n+1, if (!(n % (p-1)), t = valuation(n, p); if (p==2, if (t, res *= p^(t+2)), res *= p^(t+1)); ); ); res; ); } \\ A079612
    a(n) = numdiv(f(n))*2^numdiv(n); \\ Michel Marcus, Aug 22 2019

Formula

a(n) = A000005(A079612(n))*2^A000005(n).
a(n) = 2^(A000005(n)+1) for odd n. - Jianing Song, Dec 05 2021

Extensions

Name edited by Jon E. Schoenfield, Mar 04 2021

A006953 a(n) = denominator of Bernoulli(2n)/(2n).

Original entry on oeis.org

12, 120, 252, 240, 132, 32760, 12, 8160, 14364, 6600, 276, 65520, 12, 3480, 85932, 16320, 12, 69090840, 12, 541200, 75852, 2760, 564, 2227680, 132, 6360, 43092, 6960, 708, 3407203800, 12, 32640, 388332, 120, 9372, 10087262640
Offset: 1

Views

Author

Keywords

Comments

a(n) are alternately divisible by 12 and 120, a(n)/(12, 120, 12, 120, 12, 120, ...) = 1, 1, 21, 2, 11, 273, ... . - Paul Curtz, Sep 13 2011 and Michel Marcus, Jan 05 2013
A141590/(2 before a(n+1)) = 1/2 + 1/12 - 1/120 + 1/252 is an old semi-convergent series for Euler's constants A001620 ("2 before a" meaning that one term, namely 2, is inserted before the sequence). This series is discussed in details in reference [Blagouchine, 2016], Sect. 3 and Fig. 3. - Paul Curtz, Sep 13 2011, Michel Marcus, Jan 05 2013 and Iaroslav V. Blagouchine, Sep 16 2015
a(n) = A006863(n)/2. - Michel Marcus, Jan 05 2013

Examples

			Sequence Bernoulli(2n)/(2n) (n >= 1) begins 1/12, -1/120, 1/252, -1/240, 1/132, -691/32760, 1/12, -3617/8160, ... .
		

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 259, (6.3.18) and (6.3.19); also p. 810.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Numerators are given by A001067.

Programs

  • GAP
    List([1..40], n-> DenominatorRat(Bernoulli(2*n)/(2*n)) ); # G. C. Greubel, Sep 19 2019
  • Magma
    [Denominator(Bernoulli(2*n)/(2*n)):n in [1..40]]; // Vincenzo Librandi, Sep 17 2015
    
  • Maple
    A006953_list := proc(n) 1/(1-1/exp(z)); series(%,z,2*n+4);
    seq(denom((-1)^i*(2*i+1)!*coeff(%,z,2*i+1)),i=0..n) end;
    A006953_list(35); # Peter Luschny, Jul 12 2012
  • Mathematica
    Table[Denominator[BernoulliB[2n]/(2n)],{n,40}] (* Harvey P. Dale, Jan 12 2022 *)
  • PARI
    a(n) = denominator(bernfrac(2*n)/(2*n)); \\ Michel Marcus, Apr 21 2016
    
  • Sage
    [denominator(bernoulli(2*n)/(2*n)) for n in (1..40)] # G. C. Greubel, Sep 19 2019
    

Formula

Zeta(1-2*n) = -Bernoulli(2*n)/(2*n).
G.f. for Bernoulli(2*n)/(2*n) = A001067(n)/A006953(n): (-1)^n/((2*Pi)^(2*n)*(2*n)) * Integral_{t=0..1} log(1-1/t)^(2*n) dt. - Gerry Martens, May 18 2011
E.g.f.: a(n) = denominator((2*n+1)!*[x^(2*n+1)](1/(1-1/exp(x)))). - Peter Luschny, Jul 12 2012

Extensions

Previous Mathematica program replaced by Harvey P. Dale, Jan 12 2022

A069091 Jordan function J_6(n).

Original entry on oeis.org

1, 63, 728, 4032, 15624, 45864, 117648, 258048, 530712, 984312, 1771560, 2935296, 4826808, 7411824, 11374272, 16515072, 24137568, 33434856, 47045880, 62995968, 85647744, 111608280, 148035888, 187858944, 244125000, 304088904, 386889048
Offset: 1

Views

Author

Benoit Cloitre, Apr 05 2002

Keywords

Comments

Moebius transform of n^6. - Enrique Pérez Herrero, Sep 14 2010
a(n) is divisible by 504 = (2^3)*(3^3)*7 = A006863(3) except for n = 1, 2, 3 and 7. See Lugo. - Peter Bala, Jan 13 2024

References

  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 199, #3.

Crossrefs

Cf. A059379 and A059380 (triangle of values of J_k(n)), A000010 (J_1), A007434 (J_2), A059376 (J_3), A059377 (J_4), A059378 (J_5), A069092 - A069095 (J_7 through J_10).
Cf. A065959.
Cf. A013665.

Programs

  • Maple
    with(numtheory): seq(add(d^6 * mobius(n/d), d in divisors(n)), n = 1..100); # Peter Bala, Jan 13 2024
  • Mathematica
    JordanTotient[n_,k_:1]:=DivisorSum[n,#^k*MoebiusMu[n/# ]&]/;(n>0)&&IntegerQ[n]
    A069091[n_IntegerQ]:=JordanTotient[n,6]; (* Enrique Pérez Herrero, Sep 14 2010 *)
    f[p_, e_] := p^(6*e) - p^(6*(e-1)); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 12 2020 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,d,d^6*moebius(n/d)),","))

Formula

a(n) = Sum_{d|n} d^6*mu(n/d).
Multiplicative with a(p^e) = p^(6e)-p^(6(e-1)).
Dirichlet generating function: zeta(s-6)/zeta(s). - Ralf Stephan, Jul 04 2013
a(n) = n^6*Product_{distinct primes p dividing n} (1-1/p^6). - Tom Edgar, Jan 09 2015
Sum_{k=1..n} a(k) ~ n^7 / (7*zeta(7)). - Vaclav Kotesovec, Feb 07 2019
From Amiram Eldar, Oct 12 2020: (Start)
Limit_{n->oo} (1/n) * Sum_{k=1..n} a(k)/k^6 = 1/zeta(7).
Sum_{n>=1} 1/a(n) = Product_{p prime} (1 + p^6/(p^6-1)^2) = 1.0175973008... (End)
O.g.f.: Sum_{n >= 1} mu(n)*A(x^n)/(1 - x^n)^7 = x + 63*x^2 + 728*x^3 + 4032*x^4 + 15624*x^5 + ..., where A(x) = x + 57*x^2 + 302*x^3 + 302*x^4 + 57*x^5 + x^6 is the 6th Eulerian polynomial. See A008292. - Peter Bala, Jan 31 2022

A069095 Jordan function J_10(n).

Original entry on oeis.org

1, 1023, 59048, 1047552, 9765624, 60406104, 282475248, 1072693248, 3486725352, 9990233352, 25937424600, 61855850496, 137858491848, 288972178704, 576640565952, 1098437885952, 2015993900448, 3566920035096, 6131066257800
Offset: 1

Views

Author

Benoit Cloitre, Apr 05 2002

Keywords

Comments

a(n) is divisible by 264 = (2^3)*3*11 = A006863(5), except for n = 1, 2, 3 or 11. See Lugo. - Peter Bala, Jan 13 2024

References

  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 199, #3.

Crossrefs

Cf. A059379 and A059380 (triangle of values of J_k(n)), A000010 (J_1), A007434 (J-2), A059376 (J_3), A059377 (J_4), A059378 (J_5), A069091 - A069094 (J_6 through J_9).
Cf. A013669.

Programs

  • Maple
    f:= n -> n^10*mul(1-1/p^10, p=numtheory:-factorset(n)):
    map(f, [$1..30]); # Robert Israel, Jan 09 2015
  • Mathematica
    JordanJ[n_, k_] := DivisorSum[n, #^k*MoebiusMu[n/#] &]; f[n_] := JordanJ[n, 10]; Array[f, 21]
    f[p_, e_] := p^(10*e) - p^(10*(e-1)); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 12 2020 *)
  • PARI
    a(n) = sumdiv(n,d,d^10*moebius(n/d));

Formula

a(n) = Sum_{d|n} d^10*mu(n/d).
Multiplicative with a(p^e) = p^(10e)-p^(10(e-1)).
Dirichlet generating function: zeta(s-10)/zeta(s). - Ralf Stephan, Jul 04 2013
a(n) = n^10*Product_{distinct primes p dividing n} (1-1/p^10). - Tom Edgar, Jan 09 2015
Sum_{k=1..n} a(k) ~ n^11 / (11*zeta(11)). - Vaclav Kotesovec, Feb 07 2019
From Amiram Eldar, Oct 12 2020: (Start)
lim_{n->oo} (1/n) * Sum_{k=1..n} a(k)/k^10 = 1/zeta(11).
Sum_{n>=1} 1/a(n) = Product_{p prime} (1 + p^10/(p^10-1)^2) = 1.0009955309... (End)

A079612 Largest number m such that a^n == 1 (mod m) whenever a is coprime to m.

Original entry on oeis.org

2, 24, 2, 240, 2, 504, 2, 480, 2, 264, 2, 65520, 2, 24, 2, 16320, 2, 28728, 2, 13200, 2, 552, 2, 131040, 2, 24, 2, 6960, 2, 171864, 2, 32640, 2, 24, 2, 138181680, 2, 24, 2, 1082400, 2, 151704, 2, 5520, 2, 1128, 2, 4455360, 2, 264, 2, 12720, 2, 86184, 2, 13920
Offset: 1

Views

Author

N. J. A. Sloane, Jan 29 2003

Keywords

Comments

a(m) divides the Jordan function J_m(n) for all n except when n is a prime dividing a(m) or m=2, n=4; it is the largest number dividing all but finitely many values of J_m(n). For m > 0, a(m) also divides Sum_{k=1}^n J_m(k) for n >= the largest exceptional value. - Franklin T. Adams-Watters, Dec 10 2005
The numbers m with this property are the divisors of a(n) that are not divisors of a(r) for r

References

  • R. C. Vaughan and T. D. Wooley, Waring's problem: a survey, pp. 285-324 of Surveys in Number Theory (Urbana, May 21, 2000), ed. M. A. Bennett et al., Peters, 2003. (The function K(n), see p. 303.)

Crossrefs

Cf. A006863 (bisection except for initial term); A059379 (Jordan function).

Programs

  • PARI
    a(n) = {if (n%2, 2, res = 1; forprime(p=2, n+1, if (!(n % (p-1)), t = valuation(n, p); if (p==2, if (t, res *= p^(t+2)), res *= p^(t+1)););); res;);} \\ Michel Marcus, May 12 2018

Formula

a(n) = 2 for n odd; for n even, a(n) = product of 2^(t+2) (where 2^t exactly divides n) and p^(t+1) (where p runs through all odd primes such that p-1 divides n and p^t exactly divides n).
From Antti Karttunen, Dec 19 2018: (Start)
a(n) = A185633(n)*(2-A000035(n)).
It also seems that for n > 1, a(n) = 2*A075180(n-1). (End)
We have 2*A075180(2n-1) = A006863(n) by definition, and A006863(n) = a(2n) by the comments in A006863. Hence a(n) = 2*A075180(n-1) for all even n. For all odd n > 1, we have a(n) = 2, which is also equal to 2*A075180(n-1). So the formula above is true. - Jianing Song, Apr 05 2021

Extensions

Edited by Franklin T. Adams-Watters, Dec 10 2005
Definition corrected by T. D. Noe, Aug 13 2008
Rather arbitrary term a(0) removed by Max Alekseyev, May 27 2010

A143407 Largest number k such that the reduced totient function psi(k) = A002174(n).

Original entry on oeis.org

2, 24, 240, 504, 480, 264, 65520, 16320, 28728, 13200, 552, 131040, 6960, 171864, 32640, 138181680, 1082400, 151704, 5520, 1128, 4455360, 12720, 86184, 13920, 1416, 6814407600, 65280, 776664, 18744, 20174525280, 39816, 36801600, 1992
Offset: 1

Author

T. D. Noe, Aug 13 2008

Keywords

Comments

For each of the values in A002174, there are only a finite number of numbers k such that psi(k)=A002174(n). This sequence gives the largest such k. Sequence A002396 gives the least k. The number of such k is given in A143408. When A002174(n) is twice a Sophie Germain prime, then a(n) is particularly small.

Crossrefs

Cf. A002322 (reduced totient function), A002174, A002396, A143408.

Formula

a(n) = A006863(A002174(n)/2) for n>1.

A069093 Jordan function J_8(n).

Original entry on oeis.org

1, 255, 6560, 65280, 390624, 1672800, 5764800, 16711680, 43040160, 99609120, 214358880, 428236800, 815730720, 1470024000, 2562493440, 4278190080, 6975757440, 10975240800, 16983563040, 25499934720, 37817088000
Offset: 1

Author

Benoit Cloitre, Apr 05 2002

Keywords

Comments

a(n) is divisible by 480 = (2^5)*3*5 = A006863(4), except for n = 1, 2, 3 and 5. See Lugo. - Peter Bala, Jan 13 2024

References

  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 199, #3.

Crossrefs

Cf. A059379 and A059380 (triangle of values of J_k(n)), A000010 (J_1), A007434 (J_2), A059376 (J_3), A059377 (J_4), A059378 (J_5), A069091 - A069095 (J_6 through J_10)
Cf. A013667.

Programs

  • Maple
    with(numtheory): seq(add(d^8 * mobius(n/d), d in divisors(n)), n = 1..100); # Peter Bala, Jan 13 2024
  • Mathematica
    JordanJ[n_, k_] := DivisorSum[n, #^k*MoebiusMu[n/#] &]; f[n_] := JordanJ[n, 8]; Array[f, 25]
    f[p_, e_] := p^(8*e) - p^(8*(e-1)); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 12 2020 *)
  • PARI
    for(n=1,100,print1(sumdiv(n,d,d^8*moebius(n/d)),","))

Formula

a(n) = Sum_{d|n} d^8*mu(n/d).
Multiplicative with a(p^e) = p^(8e)-p^(8(e-1)).
Dirichlet generating function: zeta(s-8)/zeta(s). - Ralf Stephan, Jul 04 2013
a(n) = n^8*Product_{distinct primes p dividing n} (1-1/p^8). - Tom Edgar, Jan 09 2015
Sum_{k=1..n} a(k) ~ n^9 / (9*zeta(9)). - Vaclav Kotesovec, Feb 07 2019
From Amiram Eldar, Oct 12 2020: (Start)
Limit_{n->oo} (1/n) * Sum_{k=1..n} a(k)/k^8 = 1/zeta(9).
Sum_{n>=1} 1/a(n) = Product_{p prime} (1 + p^8/(p^8-1)^2) = 1.0040927606... (End)
Showing 1-10 of 16 results. Next