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

A275701 Numbers n whose abundance is 26: sigma(n) - 2n = 26.

Original entry on oeis.org

80, 1184, 6464, 29312, 78975, 510464, 557192, 137431875584, 549741658112, 8796036399104, 35184258842624, 2251798907715584
Offset: 1

Views

Author

Timothy L. Tiffin, Aug 05 2016

Keywords

Comments

Any term x = a(m) can be combined with any term y = A275702(n) to satisfy the property (sigma(x)+sigma(y))/(x+y) = 2. Although this property is a necessary condition for two numbers to be amicable, it is not a sufficient one. So far, these two sequences have produced only one amicable pair: (x,y) = (1184,1210) = (a(2),A275702(5)) = (A063990(3),A063990(4)). If more are ever found, then they will also exhibit y-x = 26.
Notice that:
a(1) = 80 = 5* 16 = (2*4^2-27)*(4^2)
a(2) = 1184 = 37* 32 = (4^3-27)*(4^3)/2
a(3) = 6464 = 101* 64 = (2*4^3-27)*(4^3)
a(4) = 29312 = 229*128 = (4^4-27)*(4^4)/2
a(6) = 510464 = 997*512 = (4^5-27)*(4^5)/2.
If p = 2*4^k-27 is prime and n = p*(p+27)/2, then it is not hard to show that sigma(n) - 2*n = 26. The values of k in A275767 will guarantee that p is prime (A275749). Similarly, if q = 4^k-27 is prime and n = q*(q+27)/2, then sigma(n) - 2*n = 26. The values of k in A274519 will guarantee that q is prime (A275750). So, the following values will be in this sequence and provide upper bounds for the next eight terms:
(2*4^9-27)*(4^9) = 137431875584 >= a(8)
(4^10-27)*(4^10)/2 = 549741658112 >= a(9)
(4^11-27)*(4^11)/2 = 8796036399104 >= a(10)
(2*4^11-27)*(4^11) = 35184258842624 >= a(11)
(4^13-27)*(4^13)/2 = 2251798907715584 >= a(12)
(4^25-27)*(4^25)/2 = 633825300114099501099609227264 >= a(13)
(4^28-27)*(4^28)/2 = 2596148429267412841487728652582912 >= a(14)
(4^29-27)*(4^29)/2 = 41538374868278617137133892585652224 >= a(15).
a(8) > 10^9. - Michel Marcus, Sep 15 2016
a(8) > 2*10^9. - Michel Marcus, Dec 31 2016
a(13) > 10^18. - Hiroaki Yamanouchi, Aug 23 2018

Examples

			a(1) = 80, since sigma(80)-2*80 = 186-160 = 26.
a(2) = 1184, since sigma(1184)-2*1184 = 2394-2368 = 26.
a(3) = 6464, since sigma(6464)-2*6464 = 12954-12928 = 26.
		

Crossrefs

Cf. A033880, A063990, A274519, A275702 (deficiency 26), A275749, A275750, A275767.
Cf. A223609 (abundance 10), ..., A223613 (abundance 24).

Programs

  • Magma
    [n: n in [1..9*10^6] | (SumOfDivisors(n)-2*n) eq 26]; // Vincenzo Librandi, Sep 16 2016
  • Mathematica
    Select[Range[10^7], DivisorSigma[1, #] - 2 # == 26 &] (* Vincenzo Librandi, Sep 16 2016 *)
  • PARI
    isok(n) = sigma(n) - 2*n == 26; \\ Michel Marcus, Sep 15 2016
    

Extensions

a(8)-a(12) from Hiroaki Yamanouchi, Aug 23 2018

A275749 Prime numbers of the form 2*4^k - 27.

Original entry on oeis.org

5, 101, 524261, 8388581
Offset: 1

Views

Author

Timothy L. Tiffin, Aug 07 2016

Keywords

Comments

Values of the exponent k are given in A275767, and every exponent (except for the first one) is odd. Consequently, after a(1) = 5, the rightmost digit of each term in this sequence will be 1.
As seen in the link below, a(5) = 2*4^291 - 27 > 3.1658 * 10^175. As a result of the recent extensions to A275767 by Vincenzo Librandi,
a(6) = 2*4^1263 - 27 > 5.0442 * 10^760
a(7) = 2*4^2661 - 27 > 2.4136 * 10^1602
a(8) = 2*4^3165 - 27 > 6.6206 * 10^1905
a(9) > 2*4^5000 - 27 > 3.9901 * 10^3010.
These primes a(m) can be used to generate numbers having abundance 26. The formula a(m)*(a(m)+27)/2 produces some of the terms in A275701.

Examples

			a(1) = 2*4^A275767(1) - 27 = 2*4^2  - 27 =      32 - 27 =       5.
a(2) = 2*4^A275767(2) - 27 = 2*4^3  - 27 =     128 - 27 =     101.
a(3) = 2*4^A275767(3) - 27 = 2*4^9  - 27 =  524288 - 27 =  524261.
a(4) = 2*4^A275767(4) - 27 = 2*4^11 - 27 = 8388608 - 27 = 8388581.
		

Crossrefs

Programs

  • Mathematica
    Select[2*4^Range[2, 200] - 27, PrimeQ] (* Michael De Vlieger, Aug 08 2016 *)

Formula

a(n) = 2*4^A275767(n) - 27.

A274519 Numbers k for which 4^k - 27 is prime.

Original entry on oeis.org

3, 4, 5, 10, 11, 13, 25, 28, 29, 65, 70, 115, 305, 515, 2029, 2393, 2605, 3530, 4036, 4750, 10288, 11048, 11596, 29359, 32123, 47371
Offset: 1

Views

Author

Timothy L. Tiffin, Aug 07 2016

Keywords

Comments

The prime numbers that these exponents generate are given in A275750.
Since 4^(6k) - 27 = 4096^k - 27 == (1^k - 27) mod 13 = -26 mod 13 == 0 mod 13, no multiple of 6 will be in this sequence. Also, since 4^(5k+2) - 27 = 16*1024^k - 27 == (16*1^k - 27) mod 11 = -11 mod 11 == 0 mod 11, no number congruent to 2 mod 5 will be in this sequence.
a(21) > 5000. - Vincenzo Librandi, Aug 08 2016

Examples

			a(1) = 3, since 4^3 - 27 = 64 - 27 = 37, which is prime.
a(2) = 4, since 4^4 - 27 = 256 - 27 = 229, which is prime.
a(3) = 5, since 4^5 - 27 = 1024 - 27 = 997, which is prime.
a(4) = 10, since 4^10 - 27 = 1048576 - 27 = 1048549, which is prime.
a(5) = 11, since 4^11 - 27 = 4194304 - 27 = 4194277, which is prime.
a(6) = 13, since 4^13 - 27 = 67108864 - 27 = 67108837, which is prime.
		

Crossrefs

Programs

  • Magma
    [n: n in [3..2000] |IsPrime(4^n-27)]; // Vincenzo Librandi, Aug 08 2016
    
  • Mathematica
    Select[Range[3, 5000], PrimeQ[4^# - 27] &] (* Vincenzo Librandi, Aug 08 2016 *)
  • Python
    from sympy import isprime
    def afind(limit, startk=3):
        alst, pow4 = [], 4**startk
        for k in range(startk, limit+1):
            if isprime(pow4 - 27): print(k, end=", ")
            pow4 *= 4
    afind(600) # Michael S. Branicky, Sep 22 2021

Extensions

a(13)-a(20) from Vincenzo Librandi, Aug 08 2016
a(21)-a(23) from Michael S. Branicky, Sep 22 2021
a(24)-a(26) from Michael S. Branicky, Oct 25 2024
Showing 1-3 of 3 results.