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.

Showing 1-3 of 3 results.

A077671 Triangular numbers whose digit permutations yield at least one further triangular number.

Original entry on oeis.org

10, 105, 120, 153, 190, 210, 253, 300, 325, 351, 496, 630, 780, 820, 946, 1035, 1378, 1485, 1830, 1891, 2080, 2145, 2415, 2701, 2850, 3081, 3160, 3570, 3655, 3741, 3916, 4005, 4095, 4371, 4560, 4851, 4950, 5050, 5356, 5460, 5565, 5778, 6105, 6555, 7021
Offset: 1

Views

Author

Amarnath Murthy, Nov 16 2002

Keywords

Examples

			153 and 190 are members yielding 351 and 091. But 66, 666 are not members.
		

Crossrefs

Programs

  • Mathematica
    trl=Rest[FoldList[Plus, 0, Range[2000]]]; okQ[n_] := Module[{p=Complement[FromDigits/@Permutations[IntegerDigits[n]], {n}]}, Length[Intersection[p, trl]]>0]; Select[Take[trl, 100], okQ]
    Select[Accumulate[Range[150]],Count[FromDigits/@Permutations[IntegerDigits[#]],?(OddQ[ Sqrt[ 8#+1]]&)]>1&] (* _Harvey P. Dale, Nov 21 2023 *)
  • PARI
    isok(t) = {my(d=digits(t)); forperm(#d, p, my(tt = fromdigits(Vec(vector(#d, k, d[p[k]])))); if ((tt!=t) && ispolygonal(tt, 3), return (1)); ); return(0); }
    lista(nn) = {for (n=0, nn, my(t=n*(n+1)/2); if (isok(t), print1(t, ", ")); ); } \\ Michel Marcus, May 04 2021

Extensions

More terms from Harvey P. Dale, Nov 22 2002
Extended by Ray Chandler, Jun 29 2004
Offset changed to 1 by Jinyuan Wang, Aug 06 2021

A069674 Triangular numbers whose digit permutations yield at least two further triangular numbers.

Original entry on oeis.org

120, 210, 1035, 2080, 4095, 4560, 4950, 5460, 9045, 13530, 15400, 17020, 17205, 17578, 19306, 20100, 20503, 20706, 23005, 30135, 30628, 36046, 37401, 40186, 43071, 43660, 46360, 46971, 50721, 51040, 52003, 53301, 60031, 63190, 66430
Offset: 1

Views

Author

Amarnath Murthy, Apr 06 2002

Keywords

Examples

			120 yields 21 and 210; 210 yields 21 and 120.
		

Crossrefs

Extensions

Edited, corrected and extended by Ray Chandler, Jun 29 2004
Offset changed to 1 by Jinyuan Wang, Aug 06 2021

A095870 Least triangular number whose digit permutations yield exactly n further triangular numbers.

Original entry on oeis.org

1, 10, 120, 17020, 20503, 156520, 1087075, 1021735, 1026028, 1053426, 104653, 10623745, 10280845, 1004653, 10568503, 10725396, 10762480, 12890503, 10348975, 10394520, 101495628, 100543290, 102495403, 100359028, 104972805, 124780503
Offset: 0

Views

Author

Ray Chandler, Jun 29 2004

Keywords

Examples

			20503 yields 253, 325, 23005 and 52003.
		

Crossrefs

Showing 1-3 of 3 results.