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.

A136244 Least positive integer k such that 2k can be expressed as the sum of two primes in exactly n ways.

This page as a plain text file.
%I A136244 #19 Jul 25 2021 01:30:42
%S A136244 1,2,5,11,17,24,30,39,42,45,57,72,60,84,90,117,123,144,120,105,162,
%T A136244 150,180,237,165,264,288,195,231,240,210,285,255,336,396,378,438,357,
%U A136244 399,345,519,315,504,465,390,480,435,462,450,567,717,420,495,651,540,615,759,525,570,693,645
%N A136244 Least positive integer k such that 2k can be expressed as the sum of two primes in exactly n ways.
%C A136244 It appears that 2, 3, 4, 6 are the only numbers k such that 2k can be expressed as the sum of two primes in only one way.
%C A136244 Except when n = 1, a(n) = A258713(n). The first 11 terms of this sequence are the same as the initial terms of A053033. If a(n) exists for all n then A053033 is a subsequence. - _Andrew Howroyd_, Jan 28 2020
%H A136244 David A. Corneth, <a href="/A136244/b136244.txt">Table of n, a(n) for n = 0..16805</a> (first 1001 terms from Andrew Howroyd)
%H A136244 <a href="/index/Go#Goldbach">Index entries for sequences related to Goldbach conjecture</a>
%F A136244 From _Andrew Howroyd_, Jan 28 2020: (Start)
%F A136244 a(n) = A023036(n) / 2.
%F A136244 A045917(a(n)) = n. (End)
%e A136244 a(3) = 11: 22 = 3 + 19 = 5 + 17 = 11 + 11. Also 22 is the least number which could be expressed as the sum of two prime numbers in exactly three ways.
%o A136244 (PARI) a(n, lim=oo)={for(i=1, lim, my(s=0); forprime(p=2, i, s+=isprime(2*i-p)); if(s==n, return(i))); -1} \\ _Andrew Howroyd_, Jan 28 2020
%Y A136244 Cf. A023036, A045917, A053033, A126204, A258713.
%K A136244 nonn
%O A136244 0,2
%A A136244 K. B. Subramaniam (shunya_1950(AT)yahoo.co.in), Dec 24 2007
%E A136244 a(0)=1 prepended, a(5) corrected and a(7) and beyond from _Andrew Howroyd_, Jan 28 2020