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.

A115678 Triangular numbers whose digit reversal is a brilliant number (A078972).

Original entry on oeis.org

6, 120, 946, 1540, 7021, 13366, 14365, 15400, 19306, 35245, 72010, 95266, 156520, 179101, 191890, 334153, 341551, 913276, 925480, 933661, 946000, 1008910, 1030330, 1131760, 1383616, 1945378, 3066526, 3156328, 3308878, 3584503
Offset: 1

Views

Author

Giovanni Resta, Jan 31 2006

Keywords

Examples

			946=T(43) and 649=11*59 is brilliant.
		

Crossrefs

Programs

  • Mathematica
    bnoQ[n_]:=Module[{f=Transpose[FactorInteger[n]][[1]]},PrimeOmega[n] == 2 && IntegerLength[f[[1]]]==IntegerLength[f[[2]]]]; Select[Accumulate[Range[3000]], bnoQ[FromDigits[Reverse[IntegerDigits[#]]]]&] (* Harvey P. Dale, Feb 21 2013 *)