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.

A096528 A096527(n) / 2.

Original entry on oeis.org

0, 0, 0, 3, 0, 0, 0, 6, 3, 2, 0, 6, 0, 2, 2, 2, 0, 0, 0, 8, 6, 0, 0, 10, 3, 2, 6, 10, 0, 0, 0, 0, 2, 2, 12, 24, 0, 2, 6, 25, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0, 8, 0, 0, 12, 68, 6, 2, 0, 143, 0, 0, 48, 0, 12, 0, 0, 15, 0, 0, 0, 0, 0, 0, 16, 8, 2, 0, 0, 0, 2, 0
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 23 2004

Keywords

Extensions

More terms from Michel Marcus, May 04 2014

A096529 Numbers whose divisors can be permuted so that all sums of triple adjacent divisors are primes.

Original entry on oeis.org

4, 8, 9, 10, 12, 14, 15, 16, 20, 21, 24, 25, 26, 27, 28, 33, 34, 35, 36, 38, 39, 40, 44, 45, 52, 55, 56, 57, 58, 60, 63, 65, 68, 75, 76, 77, 81, 84, 85, 86, 88, 92, 93, 99, 100, 104, 105, 111, 115, 117, 119, 123, 124, 125, 129, 132, 135, 136, 140, 143, 145, 147
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 23 2004

Keywords

Comments

Square of terms of A053182 are in this sequence. - Michel Marcus, May 08 2014
From Amiram Eldar, Nov 08 2024: (Start)
The possible values of the number of even divisors of even terms of this sequence is restricted by the number of odd divisors.
Let k be a term and d_odd(k) = A001227(k) and d_even(k) = A183063 be its number of odd divisors and number of even divisors, respectively. When k is even, in a valid permutation of its divisors there must be two even divisors between two odd divisors, at most 2 before the first odd divisor, and at most 2 after the last odd divisor.
Therefore, d_even(k) - 2*(d_odd(k) - 1) <= 4. Let d(k) = A000005(k) = d_odd(k) + d_even(k), and let e = A007814(k) and m = A000265(k). Then, k = 2^e * m, d(k) = (e+1) * d(m) = (e+1) * d_odd(k), so d_even(k) = e * d_odd(k), and |e-2| * d_odd(k) <= 2.
If m = 1, then d_odd(k) = 1 and e <= 4, so 16 = 2^4 is the largest power of 2 in this sequence.
If m = p is a prime, then d_odd(k) = 2 and e <= 3, and therefore only terms of the form 2*p, 4*p or 8*p are possible. 2*p is a term if and only if p is a term of A106067.
If m is composite, then d_odd(k) > 2 and e <= 2, and therefore k is not divisible by 8. (End)

Examples

			Divisors of 24 are {1,2,3,4,6,8,12,24}: [2,8,3,12,4,1,24,6] -> (2+8+3,8+3+12,3+12+4,12+4+1,4+1+24,1+24+6) = (13,23,19,17,29,31): therefore 24 is a term.
		

Crossrefs

Programs

  • PARI
    isok(p) = {my(n = #p); if(n < 3, return(0)); for(k = 1, n-2, if(!isprime(p[k]+p[k+1]+p[k+2]), return(0))); 1;}
    is2(n) = {my(d = divisors(n)); forperm(d, p, if(isok(p), return(1))); 0;}
    is1(k) = {my(e = valuation(k,2), o = k >> e); (e == 0) || (o == 1 && e <= 4) || (abs(e-2) * numdiv(o) <= 2);}
    is(k) = is1(k) && is2(k); \\ Amiram Eldar, Nov 08 2024

Formula

A096527(a(n)) > 0.

Extensions

a(30)-a(51) from Michel Marcus, May 03 2014
a(52) onwards from Amiram Eldar, Nov 08 2024

A096530 Numbers whose divisors cannot be permuted so that all sums of triple adjacent divisors are primes.

Original entry on oeis.org

1, 2, 3, 5, 6, 7, 11, 13, 17, 18, 19, 22, 23, 29, 30, 31, 32, 37, 41, 42, 43, 46, 47, 48, 49, 50, 51, 53, 54, 59, 61, 62, 64, 66, 67, 69, 70, 71, 72, 73, 74, 78, 79, 80, 82, 83, 87, 89, 90, 91, 94, 95, 96, 97, 98, 101, 102, 103, 106, 107, 108, 109, 110, 112
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 23 2004

Keywords

Crossrefs

Complement of A096529.
Cf. A096527.

Formula

A096527(a(n)) = 0.

Extensions

48 inserted and more terms added by Michel Marcus, May 03 2014
Showing 1-3 of 3 results.