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.

Showing 1-2 of 2 results.

A102618 Numbers which are the sum of two positive cubes and divisible by 37.

Original entry on oeis.org

370, 407, 1332, 2331, 2960, 3256, 4921, 5957, 8029, 8288, 9990, 10656, 10989, 12691, 12913, 13357, 13949, 14023, 14911, 16021, 16354, 17353, 18648, 18907, 19684, 19721, 20683, 22681, 23680, 24605, 24901, 26048, 27343, 30007, 30303, 32893, 34965, 35964, 36001, 36556, 37259, 39331, 39368, 39627
Offset: 1

Views

Author

Jun Mizuki (suzuki32(AT)sanken.osaka-u.ac.jp), Jan 31 2005

Keywords

Crossrefs

Cf. A003325. Other sequences of the form "sum of two positive cubes and divisible by ...": A224484, A224485, A101421, A101852, A094447, A099178, A102619, A101806, A224483, A102658.

Programs

Extensions

Corrected by Robert Israel, Jun 12 2020

A224485 Numbers which are the sum of two positive cubes and divisible by 5.

Original entry on oeis.org

35, 65, 250, 280, 370, 520, 730, 855, 945, 1125, 1395, 1755, 2000, 2060, 2205, 2240, 2540, 2745, 2960, 3500, 3925, 4075, 4160, 4375, 4825, 4940, 5425, 5840, 6175, 6750, 6840, 6860, 7075, 7110, 7560, 8125, 8190, 9000, 9325, 9990
Offset: 1

Views

Author

Vincenzo Librandi, May 10 2013

Keywords

Comments

If 12*h-75 is a square then some values of 5*h are in this sequence. It is easy to verify that h is of the form 3*m^2-3*m+7, and therefore 5*(3*m^2-3*m+7) = (3-m)^3+(m+2)^3.

Crossrefs

Cf. A224484 (divisible by k=3), A101421 (k=7), A101852 (k=11), A094447 (k=13), A099178 (k=17), A102619 (k=19), A101806 (k=23), A224483 (k=29), A102658 (k=31), A102618 (k=37).

Programs

  • Mathematica
    upto[n_] := Block[{t}, Union@ Reap[ Do[If[Mod[t = x^3 + y^3, 5] == 0, Sow@t], {x, n^(1/3)}, {y, Min[x, (n - x^3)^(1/3)]}]][[2, 1]]]; upto[10000] (* Giovanni Resta, Jun 12 2020 *)
Showing 1-2 of 2 results.