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

A055482 There exists some k>0 such that n is the product of (k + digits of n).

Original entry on oeis.org

12, 18, 24, 35, 50, 56, 90, 120, 210, 315, 450, 780, 840, 1500, 3920, 4320, 4752, 7744, 16500, 24960, 57915, 59400, 60480, 91728, 269500, 493920, 917280, 1293600, 2419200, 3386880, 34992000, 266378112, 317447424, 1277337600, 3714984000, 14948388000, 48697248600, 460522782720, 896168448000
Offset: 1

Views

Author

Erich Friedman, Jun 27 2000

Keywords

Comments

18 appears to be the only term with k=1, there are no other terms with k=1 as well as with k=3,8,9 below 10^100. - Max Alekseyev, Jan 25 2015

Examples

			4752 = (4+4)(4+7)(4+5)(4+2).
		

Crossrefs

Subsequences: A098113 (k=2), A098114 (k=4), A097371 (k=5), A097372 (k=6), A115227 (k=7)

Programs

  • Mathematica
    L={}; Do[Print@ n; Do[p = Reverse/@ IntegerPartitions[ k, {n}, Range[0, 9]]; Do[z = Times@@ (e + k); If[ Sort@ IntegerDigits@ z == e, Print[{z, k}]; AppendTo[L, z]], {k, 9}, {e, p}], {k, 9*n}],{n, 2, 13}]; Sort@ L (* terms < 10^13, Giovanni Resta, Jul 24 2015 *)

Extensions

Offset corrected and more terms added by Max Alekseyev, Jan 23 2015

A115227 Numbers k such that k = (d_1+7)(d_2+7)*...*(d_m+7) where d_1 d_2 ... d_m is the decimal expansion of k.

Original entry on oeis.org

8314460009856000, 31746120037632000, 92632873013093597184000000, 1108240107492643314063114240000, 25425833233403394290952098021376000000000, 67839608823081187608930897100800000000000, 1064102035269050218905833606927320350720000000
Offset: 1

Views

Author

Giovanni Resta, Jan 16 2006

Keywords

Examples

			a(1) = 8314460009856000 = (7+8)*(7+3)*(7+1)*...*(7+6)*(7+0)*(7+0)*(7+0).
		

Crossrefs

Extensions

a(6)-a(18) from Max Alekseyev, Jan 25 2015
Showing 1-2 of 2 results.