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.

A101852 Numbers which are the sum of two positive cubes and divisible by 11.

This page as a plain text file.
%I A101852 #8 Jun 13 2020 00:51:27
%S A101852 341,407,539,737,1001,2662,2728,2926,3256,3718,4312,5038,5896,6886,
%T A101852 8008,9009,9207,9262,9603,10197,10989,11979,13167,14553,16137,17919,
%U A101852 19899,21296,21428,21824,22077,22484,23408,24453,24596,26048,27027,27764
%N A101852 Numbers which are the sum of two positive cubes and divisible by 11.
%H A101852 Vincenzo Librandi, <a href="/A101852/b101852.txt">Table of n, a(n) for n = 1..1000</a>
%t A101852 upto[n_] := Block[{t}, Union@ Reap[ Do[If[Mod[t = x^3 + y^3, 11] == 0, Sow@t], {x, n^(1/3)}, {y, Min[x, (n - x^3)^(1/3)]}]][[2, 1]]]; upto[28000] (* _Giovanni Resta_, Jun 12 2020 *)
%Y A101852 Cf. A003325.
%K A101852 nonn,easy
%O A101852 1,1
%A A101852 Jun Mizuki (suzuki32(AT)sanken.osaka-u.ac.jp), Jan 27 2005