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

A345048 a(n) = A342001(n) * A051709(n).

Original entry on oeis.org

0, 0, 0, 2, 0, 10, 0, 9, 2, 14, 0, 64, 0, 18, 16, 28, 0, 63, 0, 120, 20, 26, 0, 220, 2, 30, 12, 192, 0, 620, 0, 75, 28, 38, 24, 310, 0, 42, 32, 442, 0, 984, 0, 384, 156, 50, 0, 616, 2, 117, 40, 504, 0, 270, 32, 736, 44, 62, 0, 2944, 0, 66, 238, 186, 36, 1952, 0, 792, 52, 1652, 0, 975, 0, 78, 154, 960, 36, 2556, 0, 1276, 52
Offset: 1

Views

Author

Antti Karttunen, Jun 06 2021

Keywords

Crossrefs

Programs

Formula

a(n) = A342001(n) * A051709(n).
a(n) = A345049(n) + A345050(n).

A344994 Numbers k such that A173557(k) divides nonzero A051709(k).

Original entry on oeis.org

4, 6, 8, 12, 16, 24, 27, 28, 32, 42, 48, 54, 60, 64, 96, 108, 112, 120, 126, 128, 150, 168, 176, 192, 204, 216, 240, 243, 250, 256, 294, 312, 378, 384, 396, 432, 440, 448, 456, 460, 480, 486, 496, 500, 504, 512, 540, 588, 672, 700, 768, 774, 828, 840, 864, 888, 924, 960, 972, 1000, 1014, 1024, 1080, 1134, 1176, 1216
Offset: 1

Views

Author

Antti Karttunen, Jun 05 2021

Keywords

Crossrefs

Cf. A344995, A345054 (subsequences).
Cf. also A344754, A345051.

Programs

  • PARI
    A051709(n) = ((sigma(n) + eulerphi(n)) - (2*n));
    A173557(n) = factorback(apply(p -> p-1, factor(n)[, 1]));
    isA344994(n) = { my(u=A051709(n)); ((u>0)&&(0==(u%A173557(n)))); };

A344996 a(n) = A048250(n) * A051709(n).

Original entry on oeis.org

0, 0, 0, 3, 0, 24, 0, 9, 4, 36, 0, 96, 0, 48, 48, 21, 0, 108, 0, 180, 64, 72, 0, 240, 6, 84, 16, 288, 0, 1440, 0, 45, 96, 108, 96, 372, 0, 120, 112, 468, 0, 2304, 0, 576, 288, 144, 0, 528, 8, 234, 144, 756, 0, 360, 144, 768, 160, 180, 0, 4608, 0, 192, 448, 93, 168, 4608, 0, 1188, 192, 4032, 0, 900, 0, 228, 336, 1440, 192
Offset: 1

Views

Author

Antti Karttunen, Jun 05 2021

Keywords

Crossrefs

Cf. also A344997.

Programs

Formula

a(n) = A048250(n) * A051709(n).
a(n) = -[Sum_{d|n} mu(d)^2*d] * [Sum_{d|n, dA001065(d)].
a(n) = -Product(p_i + 1) * [Sum_{d|n, dA008683(n/d)*A001065(d)], where p_i are distinct primes dividing n.
Sum_{k=1..n} a(k) ~ c * n^3 / 3, where c = zeta(3) * Product_{p prime} (1 + 1/p^2 - 1/p^3) + 6/Pi^2 - 2 = 0.177775281124... . - Amiram Eldar, Dec 04 2023

A344995 Numbers k such that A051709(k)/A173557(k) is a positive natural number and a divisor of k.

Original entry on oeis.org

4, 6, 12, 28, 42, 312, 456, 496, 588, 828, 1080, 1216, 1242, 1377, 1560, 4560, 5964, 7320, 7480, 7584, 8128, 11400, 13728, 14784, 23760, 33462, 59400, 59520, 124020, 147840, 188600, 277648, 321000, 543552, 1288224, 1510272, 1596048, 1964544, 2038140, 3323736, 3611520, 3780672, 3909816, 6137440, 9034032, 10783890
Offset: 1

Views

Author

Antti Karttunen, Jun 05 2021

Keywords

Crossrefs

Subsequence of A344994.
Cf. also A344755, A345002.

Programs

  • PARI
    A051709(n) = ((sigma(n) + eulerphi(n)) - (2*n));
    A173557(n) = factorback(apply(p -> p-1, factor(n)[, 1]));
    isA344995(n) = { my(u=A051709(n),t=A173557(n),r=u/t); ((u>0)&&(1==denominator(r)&&!(n%r))); };

A345054 Odd numbers k such that A173557(k) divides nonzero A051709(k).

Original entry on oeis.org

27, 243, 1377, 2187, 3125, 19683, 28125, 55233, 68445, 177147, 195625, 203125, 239805, 253125, 453125, 823543, 907137, 1323297, 1378125, 1464561, 1594323, 1953125, 2278125, 3341637, 3572829, 5255361, 5877117, 9034497, 9819837, 11701053, 14348907, 17453125, 19460393, 20503125, 22209633, 26010621, 30074733, 44910045
Offset: 1

Views

Author

Antti Karttunen, Jun 06 2021

Keywords

Comments

Question: Are there any common terms with A345051?

Crossrefs

Odd terms in A344994.

Programs

  • PARI
    A051709(n) = ((sigma(n) + eulerphi(n)) - (2*n));
    A173557(n) = factorback(apply(p -> p-1, factor(n)[, 1]));
    isA345054(n) = if(!(n%2),0,my(u=A051709(n)); ((u>0)&&(0==(u%A173557(n)))));

A001248 Squares of primes.

Original entry on oeis.org

4, 9, 25, 49, 121, 169, 289, 361, 529, 841, 961, 1369, 1681, 1849, 2209, 2809, 3481, 3721, 4489, 5041, 5329, 6241, 6889, 7921, 9409, 10201, 10609, 11449, 11881, 12769, 16129, 17161, 18769, 19321, 22201, 22801, 24649, 26569, 27889, 29929, 32041, 32761, 36481
Offset: 1

Views

Author

Keywords

Comments

Also 4, together with numbers n such that Sum_{d|n}(-1)^d = -A048272(n) = -3. - Benoit Cloitre, Apr 14 2002
Also, all solutions to the equation sigma(x) + phi(x) = 2x + 1. - Farideh Firoozbakht, Feb 02 2005
Unique numbers having 3 divisors (1, their square root, themselves). - Alexandre Wajnberg, Jan 15 2006
Smallest (or first) new number deleted at the n-th step in an Eratosthenes sieve. - Lekraj Beedassy, Aug 17 2006
Subsequence of semiprimes A001358. - Lekraj Beedassy, Sep 06 2006
Integers having only 1 factor other than 1 and the number itself. Every number in the sequence is a multiple of 1 factor other than 1 and the number itself. 4 : 2 is the only factor other than 1 and 4; 9 : 3 is the only factor other than 1 and 9; and so on. - Rachit Agrawal (rachit_agrawal(AT)daiict.ac.in), Oct 23 2007
The n-th number with p divisors is equal to the n-th prime raised to power p-1, where p is prime. - Omar E. Pol, May 06 2008
There are 2 Abelian groups of order p^2 (C_p^2 and C_p x C_p) and no non-Abelian group. - Franz Vrabec, Sep 11 2008
Also numbers n such that phi(n) = n - sqrt(n). - Michel Lagneau, May 25 2012
For n > 1, n is the sum of numbers from A006254(n-1) to A168565(n-1). - Vicente Izquierdo Gomez, Dec 01 2012
A078898(a(n)) = 2. - Reinhard Zumkeller, Apr 06 2015
Let r(n) = (a(n) - 1)/(a(n) + 1); then Product_{n>=1} r(n) = (3/5) * (4/5) * (12/13) * (24/25) * (60/61) * ... = 2/5. - Dimitris Valianatos, Feb 26 2019
Numbers k such that A051709(k) = 1. - Jianing Song, Jun 27 2021

Crossrefs

Programs

Formula

n such that A062799(n) = 2. - Benoit Cloitre, Apr 06 2002
A000005(a(n)^(k-1)) = A005408(k) for all k>0. - Reinhard Zumkeller, Mar 04 2007
a(n) = A000040(n)^(3-1)=A000040(n)^2, where 3 is the number of divisors of a(n). - Omar E. Pol, May 06 2008
A000005(a(n)) = 3 or A002033(a(n)) = 2. - Juri-Stepan Gerasimov, Oct 10 2009
A033273(a(n)) = 3. - Juri-Stepan Gerasimov, Dec 07 2009
For n > 2: (a(n) + 17) mod 12 = 6. - Reinhard Zumkeller, May 12 2010
A192134(A095874(a(n))) = A005722(n) + 1. - Reinhard Zumkeller, Jun 26 2011
For n > 2: a(n) = 1 (mod 24). - Zak Seidov, Dec 07 2011
A211110(a(n)) = 2. - Reinhard Zumkeller, Apr 02 2012
a(n) = A087112(n,n). - Reinhard Zumkeller, Nov 25 2012
a(n) = prime(n)^2. - Jon E. Schoenfield, Mar 29 2015
Product_{n>=1} a(n)/(a(n)-1) = Pi^2/6. - Daniel Suteu, Feb 06 2017
Sum_{n>=1} 1/a(n) = P(2) = 0.4522474200... (A085548). - Amiram Eldar, Jul 27 2020
From Amiram Eldar, Jan 23 2021: (Start)
Product_{n>=1} (1 + 1/a(n)) = zeta(2)/zeta(4) = 15/Pi^2 (A082020).
Product_{n>=1} (1 - 1/a(n)) = 1/zeta(2) = 6/Pi^2 (A059956). (End)

A006881 Squarefree semiprimes: Numbers that are the product of two distinct primes.

Original entry on oeis.org

6, 10, 14, 15, 21, 22, 26, 33, 34, 35, 38, 39, 46, 51, 55, 57, 58, 62, 65, 69, 74, 77, 82, 85, 86, 87, 91, 93, 94, 95, 106, 111, 115, 118, 119, 122, 123, 129, 133, 134, 141, 142, 143, 145, 146, 155, 158, 159, 161, 166, 177, 178, 183, 185, 187, 194, 201, 202, 203, 205
Offset: 1

Views

Author

Keywords

Comments

Numbers k such that phi(k) + sigma(k) = 2*(k+1). - Benoit Cloitre, Mar 02 2002
Numbers k such that tau(k) = omega(k)^omega(k). - Benoit Cloitre, Sep 10 2002 [This comment is false. If k = 900 then tau(k) = omega(k)^omega(k) = 27 but 900 = (2*3*5)^2 is not the product of two distinct primes. - Peter Luschny, Jul 12 2023]
Could also be called 2-almost primes. - Rick L. Shepherd, May 11 2003
From the Goldston et al. reference's abstract: "lim inf [as n approaches infinity] [(a(n+1) - a(n))] <= 26. If an appropriate generalization of the Elliott-Halberstam Conjecture is true, then the above bound can be improved to 6." - Jonathan Vos Post, Jun 20 2005
The maximal number of consecutive integers in this sequence is 3 - there cannot be 4 consecutive integers because one of them would be divisible by 4 and therefore would not be product of distinct primes. There are several examples of 3 consecutive integers in this sequence. The first one is 33 = 3 * 11, 34 = 2 * 17, 35 = 5 * 7; (see A039833). - Matias Saucedo (solomatias(AT)yahoo.com.ar), Mar 15 2008
Number of terms less than or equal to 10^k for k >= 0 is A036351(k). - Robert G. Wilson v, Jun 26 2012
Are these the numbers k whose difference between the sum of proper divisors of k and the arithmetic derivative of k is equal to 1? - Omar E. Pol, Dec 19 2012
Intersection of A001358 and A030513. - Wesley Ivan Hurt, Sep 09 2013
A237114(n) (smallest semiprime k^prime(n)+1) is a term, for n != 2. - Jonathan Sondow, Feb 06 2014
a(n) are the reduced denominators of p_2/p_1 + p_4/p_3, where p_1 != p_2, p_3 != p_4, p_1 != p_3, and the p's are primes. In other words, (p_2*p_3 + p_1*p_4) never shares a common factor with p_1*p_3. - Richard R. Forberg, Mar 04 2015
Conjecture: The sums of two elements of a(n) forms a set that includes all primes greater than or equal to 29 and all integers greater than or equal to 83 (and many below 83). - Richard R. Forberg, Mar 04 2015
The (disjoint) union of this sequence and A001248 is A001358. - Jason Kimberley, Nov 12 2015
A263990 lists the subsequence of a(n) where a(n+1)=1+a(n). - R. J. Mathar, Aug 13 2019

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • Zervos, Marie: Sur une classe de nombres composés. Actes du Congrès interbalkanique de mathématiciens 267-268 (1935)

Crossrefs

Products of exactly k distinct primes, for k = 1 to 6: A000040, A006881. A007304, A046386, A046387, A067885.
Cf. A030229, A051709, A001221 (omega(n)), A001222 (bigomega(n)), A001358 (semiprimes), A005117 (squarefree), A007304 (squarefree 3-almost primes), A213952, A039833, A016105 (subsequences), A237114 (subsequence, n != 2).
Subsequence of A007422.
Cf. A259758 (subsequence), A036351, A363923.

Programs

  • Haskell
    a006881 n = a006881_list !! (n-1)
    a006881_list = filter chi [1..] where
       chi n = p /= q && a010051 q == 1 where
          p = a020639 n
          q = n `div` p
    -- Reinhard Zumkeller, Aug 07 2011
    
  • Magma
    [n: n in [1..210] | EulerPhi(n) + DivisorSigma(1,n) eq 2*(n+1)]; // Vincenzo Librandi, Sep 17 2015
    
  • Maple
    N:= 1001: # to get all terms < N
    Primes:= select(isprime, [2,seq(2*k+1,k=1..floor(N/2))]):
    {seq(seq(p*q,q=Primes[1..ListTools:-BinaryPlace(Primes,N/p)]),p=Primes)} minus {seq(p^2,p=Primes)};
    # Robert Israel, Jul 23 2014
    # Alternative, using A001221:
    isA006881 := proc(n)
         if numtheory[bigomega](n) =2 and A001221(n) = 2 then
            true ;
        else
            false ;
        end if;
    end proc:
    A006881 := proc(n) if n = 1 then 6; else for a from procname(n-1)+1 do if isA006881(a) then return a; end if; end do: end if;
    end proc: # R. J. Mathar, May 02 2010
    # Alternative:
    with(NumberTheory): isA006881 := n -> is(NumberOfPrimeFactors(n, 'distinct') = 2 and NumberOfPrimeFactors(n) = 2):
    select(isA006881, [seq(1..205)]); # Peter Luschny, Jul 12 2023
  • Mathematica
    mx = 205; Sort@ Flatten@ Table[ Prime[n]*Prime[m], {n, Log[2, mx/3]}, {m, n + 1, PrimePi[ mx/Prime[n]]}] (* Robert G. Wilson v, Dec 28 2005, modified Jul 23 2014 *)
    sqFrSemiPrimeQ[n_] := Last@# & /@ FactorInteger@ n == {1, 1}; Select[Range[210], sqFrSemiPrimeQ] (* Robert G. Wilson v, Feb 07 2012 *)
    With[{upto=250},Select[Sort[Times@@@Subsets[Prime[Range[upto/2]],{2}]],#<=upto&]] (* Harvey P. Dale, Apr 30 2018 *)
  • PARI
    for(n=1,214,if(bigomega(n)==2&&omega(n)==2,print1(n,",")))
    
  • PARI
    for(n=1,214,if(bigomega(n)==2&&issquarefree(n),print1(n,",")))
    
  • PARI
    list(lim)=my(v=List()); forprime(p=2,sqrt(lim), forprime(q=p+1, lim\p, listput(v,p*q))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Jul 20 2011
    
  • Python
    from sympy import factorint
    def ok(n): f=factorint(n); return len(f) == 2 and sum(f[p] for p in f) == 2
    print(list(filter(ok, range(1, 206)))) # Michael S. Branicky, Jun 10 2021
    
  • Python
    from math import isqrt
    from sympy import primepi, primerange
    def A006881(n):
        def f(x): return int(n+x+(t:=primepi(s:=isqrt(x)))+(t*(t-1)>>1)-sum(primepi(x//k) for k in primerange(1, s+1)))
        m, k = n, f(n)
        while m != k:
            m, k = k, f(k)
        return m # Chai Wah Wu, Aug 15 2024
  • Sage
    def A006881_list(n) :
        R = []
        for i in (6..n) :
            d = prime_divisors(i)
            if len(d) == 2 :
                if d[0]*d[1] == i :
                    R.append(i)
        return R
    A006881_list(205)  # Peter Luschny, Feb 07 2012
    

Formula

A000005(a(n)^(k-1)) = A000290(k) for all k>0. - Reinhard Zumkeller, Mar 04 2007
A109810(a(n)) = 4; A178254(a(n)) = 6. - Reinhard Zumkeller, May 24 2010
A056595(a(n)) = 3. - Reinhard Zumkeller, Aug 15 2011
a(n) = A096916(n) * A070647(n). - Reinhard Zumkeller, Sep 23 2011
A211110(a(n)) = 3. - Reinhard Zumkeller, Apr 02 2012
Sum_{n >= 1} 1/a(n)^s = (1/2)*(P(s)^2 - P(2*s)), where P is Prime Zeta. - Enrique Pérez Herrero, Jun 24 2012
A050326(a(n)) = 2. - Reinhard Zumkeller, May 03 2013
sopf(a(n)) = a(n) - phi(a(n)) + 1 = sigma(a(n)) - a(n) - 1. - Wesley Ivan Hurt, May 18 2013
d(a(n)) = 4. Omega(a(n)) = 2. omega(a(n)) = 2. mu(a(n)) = 1. - Wesley Ivan Hurt, Jun 28 2013
a(n) ~ n log n/log log n. - Charles R Greathouse IV, Aug 22 2013
A089233(a(n)) = 1. - Reinhard Zumkeller, Sep 04 2013
From Peter Luschny, Jul 12 2023: (Start)
For k > 1: k is a term <=> k^A001221(k) = k*A007947(k).
For k > 1: k is a term <=> k^A001222(k) = k*A007947(k).
For k > 1: k is a term <=> A363923(k) = k. (End)
a(n) ~ n log n/log log n. - Charles R Greathouse IV, Jan 13 2025

Extensions

Name expanded (based on a comment of Rick L. Shepherd) by Charles R Greathouse IV, Sep 16 2015

A065387 a(n) = sigma(n) + phi(n).

Original entry on oeis.org

2, 4, 6, 9, 10, 14, 14, 19, 19, 22, 22, 32, 26, 30, 32, 39, 34, 45, 38, 50, 44, 46, 46, 68, 51, 54, 58, 68, 58, 80, 62, 79, 68, 70, 72, 103, 74, 78, 80, 106, 82, 108, 86, 104, 102, 94, 94, 140, 99, 113, 104, 122, 106, 138, 112, 144, 116, 118, 118, 184, 122, 126, 140
Offset: 1

Views

Author

Labos Elemer, Nov 05 2001

Keywords

Comments

a(n) = 2n for n listed in A008578, the prime numbers at the beginning of the 20th century. When a(n) = a(n + 1), n is probably listed in A066198, numbers n where phi changes as fast as sigma (the only exceptions below 10000 are 2 and 854). - Alonso del Arte, Nov 16 2005
A. Makowski proved that n is prime if and only if a(n) = n * d(n), where d is A000005. - Charles R Greathouse IV, Mar 19 2012
If n is semiprime, a(n) = 2n+1+ceiling(sqrt(n))-floor(sqrt(n)). - Wesley Ivan Hurt, May 05 2015
Atanassov proves that a(n) >= n + A001414(n). - Charles R Greathouse IV, Dec 06 2016
a(n) = 2*n+1 iff n is square of prime (A001248), a(n) = 2*(n+1) iff n is squarefree semiprime (A006881). - Bernard Schott, Feb 09 2020

Examples

			a(10) = 22 because there are 4 coprimes to 10 below 10, the divisors of 10 add up to 18, and 4 + 18 = 22.
		

References

  • K. Atanassov, New integer functions, related to ψ and σ functions. IV., Bull. Number Theory Related Topics 12 (1988), pp. 31-35.
  • Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004. See Section B41, p. 149.
  • James J. Tattersall, Elementary Number Theory in Nine Chapters, Cambridge University Press, 1999, page 162.

Crossrefs

See A292768 for partial sums, A051612 for sigma - phi.

Programs

Formula

a(n) = A000203(n) + A000010(n).
a(n) = A051709(n) + 2n. - N. J. A. Sloane, Jun 12 2004
G.f.: Sum_{k>=1} (mu(k) + 1)*x^k/(1 - x^k)^2. - Ilya Gutkovskiy, Sep 29 2017

A344753 a(n) = sigma(n) + psi(n) - 2n = Sum_{d|n, d

Original entry on oeis.org

0, 2, 2, 5, 2, 12, 2, 11, 7, 16, 2, 28, 2, 20, 18, 23, 2, 39, 2, 38, 22, 28, 2, 60, 11, 32, 22, 48, 2, 84, 2, 47, 30, 40, 26, 91, 2, 44, 34, 82, 2, 108, 2, 68, 60, 52, 2, 124, 15, 83, 42, 78, 2, 120, 34, 104, 46, 64, 2, 192, 2, 68, 74, 95, 38, 156, 2, 98, 54, 148, 2, 195, 2, 80, 94, 108, 38, 180, 2, 170, 67, 88, 2
Offset: 1

Views

Author

Antti Karttunen, May 28 2021

Keywords

Comments

Sigma is the sum of divisors (A000203), and psi is Dedekind psi-function (A001615). Coincides with the latter only on perfect numbers (A000396).

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[d + If[SquareFreeQ[n/d], d, 0], {d, Most[Divisors[n]]}];
    Array[a, 100] (* Jean-François Alcover, Jun 12 2021 *)
  • PARI
    A344753(n) = sumdiv(n,d,(d
    				

Formula

a(n) = Sum_{d|n, dA008966(n/d) * d).
a(n) = A001065(n) + A306927(n).
a(n) = A001615(n) - A033879(n).
a(n) = A344705(n) + 2*A001065(n) - n.
For squarefree n, a(n) = 2*A001065(n).
a(n) = A344997(n) / A173557(n) = A344998(n) / A342001(n). - Antti Karttunen, Jun 06 2021
Sum_{k=1..n} a(k) = c * n^2 / 2 + O(n*log(n)), where c = Pi^2/6 + 15/Pi^2 - 2 = 1.164751... . - Amiram Eldar, Dec 08 2023

Extensions

New primary definition added by Antti Karttunen, Jun 06 2021

A345001 a(n) = sigma(n) + n' - 2n, where n' is the arithmetic derivative of n (A003415) and sigma is the sum of divisors (A000203).

Original entry on oeis.org

-1, 0, -1, 3, -3, 5, -5, 11, 1, 5, -9, 20, -11, 5, 2, 31, -15, 24, -17, 26, 0, 5, -21, 56, -9, 5, 13, 32, -27, 43, -29, 79, -4, 5, -10, 79, -35, 5, -6, 78, -39, 53, -41, 44, 27, 5, -45, 140, -27, 38, -10, 50, -51, 93, -22, 100, -12, 5, -57, 140, -59, 5, 29, 191, -28, 73, -65, 62, -16, 63, -69, 207, -71, 5, 29, 68
Offset: 1

Views

Author

Antti Karttunen, Jun 05 2021

Keywords

Comments

Coincides with A003415 only on perfect numbers (A000396).

Crossrefs

Programs

  • Mathematica
    A003415[n_] := If[n < 2, 0, Module[{f = FactorInteger[n]}, If[PrimeQ[n], 1, Total[n*f[[All, 2]]/f[[All, 1]]]]]];
    a[n_] := DivisorSigma[1, n] + A003415[n] - 2 n;
    Array[a, 80] (* Jean-François Alcover, Jun 12 2021 *)
  • PARI
    A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
    A345001(n) = (sigma(n)+A003415(n)-(2*n));

Formula

a(n) = A003415(n) - A033879(n) = A000203(n) + A003415(n) - 2*n.
a(n) = A001065(n) + A168036(n).
a(n) = A344999(n) / A048250(n) = A345049(n) / A173557(n).
Sum_{k=1..n} a(k) ~ c * n^2 / 2, where c = A013661 + A136141 - 2 = 0.418090735898... . - Amiram Eldar, Dec 08 2023
Showing 1-10 of 16 results. Next