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!)
A352244 Positive integers that can be expressed in at least two ways as (x-y)*(x^3-y^3). 4
57456, 80752, 124852, 229957, 355072, 366471, 630667, 919296, 1193200, 1292032, 1316875, 1371136, 1823472, 1997632, 2036097, 2687607, 3679312, 4251871, 4653936, 5681152, 5821552, 5863536, 6540912, 8905456, 8984196, 10090672, 10113012, 10504375, 10532592, 10789632, 10921456, 14708736 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Integers that appears at least twice in the A352242 triangle.
LINKS
David A. Corneth, Table of n, a(n) for n = 1..12994 (terms <= 10^14)
David A. Corneth, PARI program
EXAMPLE
57456 is a term since it is A352242(17,5) as well as A352242(26,20).
A term (not necessarily the first) that occurs at least three times in A352242 is 1641000816 = A352242(221,65) = A352242(338,260) = A352242(1955,1943). - Robert Israel, May 17 2024
PROG
(PARI) row(n) = vector(n-1, k, (n-k)*(n^3-k^3));
lista(nn) = {my(list = List(), n=2); while (3*n*(n-1)+1 <= nn, my(rown = row(n)); for (k=1, #rown, if (rown[k] <= nn, listput(list, rown[k]))); n++; ); listsort(list); my(res = List()); for (n=1, #list, if (#select(x->(x==list[n]), list) > 1, if (!vecsearch(Vec(res), list[n]), listput(res, list[n]))); ); Vec(res); }
(PARI) \\ See PARI link
CROSSREFS
Sequence in context: A069335 A236152 A340434 * A233643 A166195 A031861
KEYWORD
nonn
AUTHOR
Michel Marcus, Mar 09 2022, after a suggestion from Vincent Thill
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 July 11 06:01 EDT 2024. Contains 374216 sequences. (Running on oeis4.)