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.

A232057 Numbers k such that S(24*(3*k-1)) <> 16*(3*k-1) mod 24*(3*k-1) where S(k) := Sum_{0<=a and i is the imaginary unit.

This page as a plain text file.
%I A232057 #14 Aug 23 2023 08:41:20
%S A232057 5,19,37,47,61,75
%N A232057 Numbers k such that S(24*(3*k-1)) <> 16*(3*k-1) mod 24*(3*k-1) where S(k) := Sum_{0<=a<n, 0<=b<n} (a+b*i)^n and i is the imaginary unit.
%t A232057 fu[n_] := fu[n] = Mod[Sum[PowerMod[i + j I, n, n], {i, 0, n - 1}, {j, 0, n - 1}], n]; Table[If[! fu[24(3n - 1)]/(3n - 1) == 16, Print[n]; n], {n, 1, 40}]
%Y A232057 Cf. A230308, A230309, A230310, A232056.
%K A232057 nonn,more,hard
%O A232057 1,1
%A A232057 _José María Grau Ribas_, Nov 17 2013