|
Search: id:A081053
|
|
|
| A081053 |
|
Sum of a prime and the square of a prime. |
|
+0 3
|
|
| 6, 7, 9, 11, 12, 14, 15, 16, 17, 20, 21, 22, 23, 26, 27, 28, 30, 32, 33, 35, 36, 38, 40, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 54, 56, 57, 60, 62, 63, 65, 66, 68, 70, 71, 72, 75, 76, 77, 78, 80, 82, 83, 84, 86, 87, 88, 90, 92, 93, 96, 98, 101, 102, 104, 105, 106, 107, 108
(list; graph; listen)
|
|
|
OFFSET
|
0,1
|
|
|
COMMENT
|
Suggested by a Goldbach-type conjecture.
|
|
FORMULA
|
a(n) = p^2 + q, p and q primes.
|
|
EXAMPLE
|
7=2^2+3
|
|
MAPLE
|
G := proc(n::posint) local p, q; p := 2; while p<=n-2 do q := n-p^2; if type(q, posint) then if isprime(q) then return(true, p, q); end if; end if; p := nextprime(p); end do; return(false); end:
|
|
MATHEMATICA
|
Take[ Union[ Flatten[ Table[ Prime[i] + Prime[j]^2, {i, 1, 30}, {j, 1, 5}]]], 70]
|
|
CROSSREFS
|
Sequence in context: A102740 A120183 A032710 this_sequence A022892 A120164 A074898
Adjacent sequences: A081050 A081051 A081052 this_sequence A081054 A081055 A081056
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Pilar Guerra Cardenas (pilarguerracardenas(AT)hotmail.com), Mar 03 2003
|
|
EXTENSIONS
|
More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Mar 05 2003
|
|
|
Search completed in 0.002 seconds
|