A307491 Numbers that are both centered triangular and tetrahedral.
1, 4, 10, 4960, 428536
Offset: 1
Links
- Eric Weisstein's World of Mathematics, Centered Triangular Number
- Eric Weisstein's World of Mathematics, Tetrahedral Number
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.
csQ[n_] := IntegerQ[Sqrt[2*n-1]]; Select[Table[n(n+1)(2n+1)/6, {n, 0, 1000}], csQ] (* Amiram Eldar, Apr 11 2019 *)
Select[LinearRecurrence[{195, -195, 1}, {1, 85, 16381}, 43], PrimeQ[#] &]
Comments