|
Search: id:A159302
|
|
|
| A159302 |
|
The sequence lists the n's such that the number of factors on both sides of the equation n + (n+1) = 2n+1` is the same. |
|
+0 1
|
|
| 1, 13, 22, 37, 58, 67, 73, 82, 94, 148, 166, 178, 193, 229, 277, 292, 310, 313, 364, 397, 409, 418, 457, 478, 502, 514, 541, 553, 577, 586, 598, 634, 652, 682, 697, 733, 757, 769, 796, 838, 841, 850, 886, 907, 913, 922, 958, 982, 1018, 1137, 1138, 1162, 1174
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
This is a preliminary proposal for further examination.
How often is one of n or n+1 a prime for any solution n?
|
|
FORMULA
|
Let npf(n) equal the number of factors of n; for 36 npf(36)=4 since 36=2*2*3*3. The sequence lists n such that npf(n) + npf(n+1) = npf(2n+1).
|
|
EXAMPLE
|
For 58 + 59 = 117, npf(58) + npf(59) = 2+1=3 = npf(117).
|
|
MAPLE
|
A001222 := proc(n) numtheory[bigomega](n) ; end: isA159302 := proc(n) RETURN( A001222(n)+A001222(n+1) = A001222(2*n+1) ); end: for n from 1 to 10000 do if isA159302(n) then printf("%d, ", n) ; fi; od: [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 10 2009]
|
|
CROSSREFS
|
Sequence in context: A164413 A164441 A162245 this_sequence A164412 A164472 A164446
Adjacent sequences: A159299 A159300 A159301 this_sequence A159303 A159304 A159305
|
|
KEYWORD
|
base,easy,nonn
|
|
AUTHOR
|
J. M. Bergot (thekingfishb(AT)yahoo.ca), Apr 09 2009
|
|
EXTENSIONS
|
Corrected and extended by R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 10 2009
|
|
|
Search completed in 0.002 seconds
|