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-4 of 4 results.

A084024 Triangle read by rows in which row n gives n smallest n-digit multiples of n that are palindromes.

Original entry on oeis.org

1, 22, 44, 111, 141, 171, 2112, 2332, 2552, 2772, 50005, 50105, 50205, 50305, 50405, 201102, 204402, 207702, 210012, 213312, 216612, 1002001, 1009001, 1011101, 1018101, 1020201, 1027201, 1036301, 21100112, 21111112, 21122112, 21133112, 21144112, 21155112, 21166112, 21177112
Offset: 1

Views

Author

Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 23 2003

Keywords

Examples

			1
22 44
111 141 171
2112 2332 2552 2772
...
		

Crossrefs

Programs

  • Mathematica
    snm[n_]:=Module[{a=Floor[10^(n-1)],b=Floor[10^n-1]},Select[ Select[ Range[ a,b],Divisible[#,n]&&IntegerLength[#]==n&],PalindromeQ,n]]; Array[ snm,8]//Flatten (* Harvey P. Dale, Aug 23 2020 *)
  • PARI
    isok(k, n) = my(d=digits(k*n)); (#d == n) && (Vecrev(d) == d);
    row(n) = {my(v=vector(n), k = ceil(10^(n-1)/n)); for (i=1, n, while(! isok(k, n), k++); v[i] = k*n; k++;); v;} \\ Michel Marcus, Mar 28 2020

Formula

T(n, 1) >= A053041(n); T(n, 1) = A083123(n). - Michel Marcus, Mar 28 2020

Extensions

Corrected and extended by Ray Chandler, Jun 12 2003
More terms from Michel Marcus, Mar 28 2020

A084026 Diagonal of A084024.

Original entry on oeis.org

1, 44, 171, 2772, 50405, 216612, 1036301, 21177112, 100808001, 1000900010, 10011211001, 210033330012, 1000175710001, 20001366310002, 500000464000005, 2110001551000112, 10000027672000001, 200000187781000002
Offset: 1

Views

Author

Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 23 2003

Keywords

Crossrefs

Extensions

Corrected and extended by Ray Chandler, Jun 14 2003

A084027 Row sums in A084024.

Original entry on oeis.org

1, 66, 423, 9768, 251025, 1253142, 7123907, 169108896, 903996009, 10004500100, 110067122011, 2520202950144, 13001275950013, 280009919140028, 7500003630000075, 33760012606001792, 170000242046000017
Offset: 1

Views

Author

Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 23 2003

Keywords

Crossrefs

Extensions

Corrected and extended by Ray Chandler, Jun 14 2003

A084028 Average of n-th row of A084024.

Original entry on oeis.org

1, 33, 141, 2442, 50205, 208857, 1017701, 21138612, 100444001, 1000450010, 10006102001, 210016912512, 1000098150001, 20000708510002, 500000242000005, 2110000787875112, 10000014238000001, 200000094935500002
Offset: 1

Views

Author

Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 23 2003

Keywords

Crossrefs

Formula

a(n) = A084027(n)/n = arithmetic mean of the n-th row.

Extensions

Corrected and extended by Ray Chandler, Jun 14 2003
Showing 1-4 of 4 results.