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.

A066528 Non-palindromic triangular numbers whose reverse is a triangular number with the same number of digits.

This page as a plain text file.
%I A066528 #17 May 21 2022 19:41:22
%S A066528 153,351,17578,87571,185745,547581,1461195,5911641,12145056,12517506,
%T A066528 60571521,65054121,304119453,354911403,1775275491,1945725771,
%U A066528 10246462281,17990863516,18226464201,35615002605,50620051653,61536809971,1222080857271,1664224065406
%N A066528 Non-palindromic triangular numbers whose reverse is a triangular number with the same number of digits.
%H A066528 Giovanni Resta, <a href="/A066528/b066528.txt">Table of n, a(n) for n = 1..64</a> (terms < 2*10^24)
%e A066528 153 and 351 are both triangular.
%t A066528 dtn[L_] := Fold[10#1+#2&, 0, L]; tritest[n_] := Module[{t}, t=Floor[N[Sqrt[2n]]]; 2n==t(t+1)]; A={}; For[i=1, i>0, i++, t=i(i+1)/2; If[tritest[tt=dtn[Reverse[IntegerDigits[t]]]]&&Mod[t, 10]>0&&t=!=tt, AppendTo[A, t]; Print[A]]]
%Y A066528 See A069673 for another version.
%Y A066528 Cf. A066703, A179889.
%Y A066528 Cf. A003098, A061455, A066569, A069673.
%K A066528 base,nonn
%O A066528 1,1
%A A066528 _Erich Friedman_, Jan 08 2002
%E A066528 a(22)-a(24) from _Giovanni Resta_, Jun 20 2015