login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135782 Positive numbers of the form 3*x*y^2 - x^3 (where x,y are positive integers). 3
2, 9, 10, 11, 16, 26, 36, 38, 44, 46, 47, 54, 72, 74, 80, 88, 107, 115, 117, 128, 135, 142, 146, 182, 187, 191, 198, 208, 234, 236, 242, 243, 250, 270, 286, 288, 297, 299, 304, 341, 352, 362, 368, 376, 413, 414, 415, 431, 432, 470, 478, 504, 506, 524, 530, 549 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
N:= 10^4: # for terms <= N
S:= {}:
for x from 1 to floor(N/2) do
S:= S union {seq(3*x*y^2 - x^3, y = ceil(x/sqrt(3)) .. floor(sqrt((x^2+N/x)/3)))}
od:
sort(convert(S, list)); # Robert Israel, Aug 14 2023
MATHEMATICA
a = {}; Do[Do[w = 3x y^2 - x^3; If[(w > 0) && w < 3000, AppendTo[a, w]], {x, 1, 1000}], {y, 1, 1000}]; Union[a]
CROSSREFS
Sequence in context: A043065 A077214 A167451 * A281899 A037457 A037314
KEYWORD
nonn
AUTHOR
Artur Jasinski, Nov 29 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 08:27 EDT 2024. Contains 371769 sequences. (Running on oeis4.)