login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A078970 Cycle of the inventory sequence (as in A063850) starting with n consists of prime numbers. 4
39, 1319, 211319, 12311319, 41122319, 1431221319, 4114232219, 2431321319, 2214333119, 2231143319, 2233311419, 2233311419 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

It can be proved that any inventory sequence ends in a cycle all of whose terms are <= 10^20.

LINKS

Carlos Rivera, The Inventory Sequences and Self-Inventoried Numbers

EXAMPLE

The inventory sequence starting with 39 is: 39, 1319, 211319, 12311319, 41122319, 1431221319, 4114232219, 2431321319, 2214333119, 2231143319, 2233311419, 2233311419,.... The cycle is 2233311419, 2233311419, .... and 2233311419 is prime.

MATHEMATICA

g[n_] := Module[{seen, r, d, l, i, t}, seen = {}; r = {}; d = IntegerDigits[n]; l = Length[d]; For[i = 1, i <= l, i++, t = d[[i]]; If[ ! MemberQ[seen, t], r = Join[r, IntegerDigits[Count[d, t]]]; r = Join[r, {t}]; seen = Append[seen, t]]]; FromDigits[r]];

pr[n_] := Module[{r, t, p1, p, a}, r = {}; t = g[n]; a = True; While[ ! MemberQ[r, t], r = Append[r, t]; t = g[t]]; r = Append[r, t]; p1 = Flatten[Position[r, t]]; p = PrimeQ[Drop[r, p1[[1]]]]; If[MemberQ[p, False], a = False]; a]; l = {}; For[k = 1, k <= 10^4, k++, If[pr[k], l = Append[l, k]]]

CROSSREFS

Cf. A063850, A078786.

Sequence in context: A028219 A014936 A009729 * A020303 A097314 A162871

Adjacent sequences:  A078967 A078968 A078969 * A078971 A078972 A078973

KEYWORD

base,nice,nonn

AUTHOR

Joseph L. Pe (joseph_l_pe(AT)hotmail.com), Jan 14 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 05:15 EST 2012. Contains 205694 sequences.