Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: awbrey
Displaying 1-10 of 51 results found. page 1 2 3 4 5 6
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A007097 Primeth recurrence: a(n+1) = a(n)-th prime.
(Formerly M0734)
+10
64
1, 2, 3, 5, 11, 31, 127, 709, 5381, 52711, 648391, 9737333, 174440041, 3657500101, 88362852307, 2428095424619, 75063692618249, 2586559730396077, 98552043847093519, 4123221751654370051 (list; graph; listen)
OFFSET

0,2

COMMENT

A007097(n) = Min {k : A109301(k) = n} = the first k whose rote height is n, the level set leader or minimum inverse function corresponding to A109301. - Jon Awbrey (jawbrey(AT)att.net), Jun 26 2005

Lubomir Alexandrov (alexandr(AT)theor.jinr.ru) informs me that he studied this sequence in his 1965 notebook. - N. J. A. Sloane (njas(AT)research.att.com), May 23 2008.

REFERENCES

Lubomir Alexandrov, unpublished notes, circa 1960.

Lubomir Alexandrov, "On the nonasymptotic prime number distribution", LANL.math.NT/9811096, Los Alamos, 1998

Lubomir Alexandrov, "Prime Number Sequences And Matrices Generated By Counting Arithmetic Functions", Communications of the Joint Institute of Nuclear Research, E5-2002-55, Dubna, 2002.

Lubomir Alexandrov,"The Eratosthenes Progression p(k+1)=p(p(k)), k=0,1,2,..., p(0)=1,4,6,... Determines an Inner Prime Number Distribution Law", Second Int. Conf. "Modern Trends in Computational Physics", Jul 24-29, 2000, Dubna, Russia, Book of Abstracts, p. 19.

L. Longeri, Towards understanding nature and the aesthetics of prime numbers, https://www.longeri.org/prime/nature.html

N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

LINKS

M. Deleglise, Computation of large values of pi(x)

N. Fernandez, An order of primeness, F(p)

N. J. A. Sloane, My favorite integer sequences, in Sequences and their Applications (Proceedings of SETA '98).

MATHEMATICA

NestList[Prime@# &, 1, 16] (from Robert G. Wilson v (rgwv(at)rgwv.com), May 30 2006)

CROSSREFS

Cf. A000720, A049076-A049081.

Cf. A109301.

Sequence in context: A090709 A112279 A130166 this_sequence A132745 A124538 A124627

Adjacent sequences: A007094 A007095 A007096 this_sequence A007098 A007099 A007100

KEYWORD

nonn,hard,nice

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Robert G. Wilson v (rgwv(AT)rgwv.com).

EXTENSIONS

15th term corrected and 2 more terms added by loria.fr!Paul.Zimmermann (Paul Zimmermann).

a(18) and a(19) from David Baugh (dbaugh(AT)rice.edu), Oct 25 2007

A011971 Aitken's array: triangle of numbers {a(n,k), n >= 0, 0<=k<=n} read by rows, defined by a(0,0)=1, a(n,0)=a(n-1,n-1), a(n,k)=a(n,k-1)+a(n-1,k-1). +10
41
1, 1, 2, 2, 3, 5, 5, 7, 10, 15, 15, 20, 27, 37, 52, 52, 67, 87, 114, 151, 203, 203, 255, 322, 409, 523, 674, 877, 877, 1080, 1335, 1657, 2066, 2589, 3263, 4140, 4140, 5017, 6097, 7432, 9089, 11155, 13744, 17007, 21147, 21147, 25287, 30304 (list; table; graph; listen)
OFFSET

0,3

COMMENT

Also called the Bell triangle or the Pierce triangle.

Let P be the lower-triangular Pascal-matrix, Then this is exp(P) / exp(1). - Gottfried Helms (helms(AT)uni-kassel.de), Mar 30 2007.

a(n,k) is the number of equivalence relations on {0, ..., n} such that k is not equivalent to n, k+1 is not equivalent to n, ..., n-1 is not equivalent to n. - D. E. Knuth, Sep 21, 2002. [Comment revised by Thijs van Ommen (thijsvanommen(AT)gmail.com), Jul 13 2008]

REFERENCES

A. C. Aitken, A problem on combinations, Edinburgh Math. Notes 28 (1933), 18-33.

J.-P. Allouche and J. Shallit, Automatic Sequences, Cambridge Univ. Press, 2003, p. 205.

L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 212.

D. E. Knuth, TAOCP, Vol. 4, Section 7.2.1.5.

Charles Sanders Peirce, On the Algebra of Logic, American Journal of Mathematics, Vol. 3, pages 15-57, 1880. Reprinted in Collected Papers (1935-1958) and in Writings of Charles S. Peirce: A Chronological Edition (Indiana University Press, Bloomington, IN, 1986).

LINKS

T. D. Noe, Rows n=0..50 of triangle, flattened

D. Dumont, Matrices d'Euler-Seidel, Sem. Loth. Comb. B05c (1981) 59-78.

Charles Sanders Peirce, Works

Charles Sanders Peirce, Collected Papers

Eric Weisstein's World of Mathematics, Bell Triangle

Nick Hobson, Python program for this sequence

FORMULA

Double-exponential generating function: sum_{n, k} a(n-k, k) x^n y^k / n! k! = exp(e^{x+y}-1+x). - D. E. Knuth, Sep 21, 2002. [U coordinates, reversed]

a(n,k) = Sum_{i=0..k} binomial(k,i)*Bell(n-k+i). - Vladeta Jovovic (vladeta(AT)eunet.rs), Oct 15 2006

EXAMPLE

Triangle begins:

1;

1,2;

2,3,5;

5,7,10,15;

15,20,27,37,52;

...

MAPLE

A011971 := proc(n, k) option remember; if n=0 and k=0 then 1 elif k=0 then A011971(n-1, n-1) else A011971(n, k-1)+A011971(n-1, k-1); fi: end;

for n from 0 to 12 do lprint([ seq(A011971(n, k), k=0..n) ]); od:

MATHEMATICA

a[0, 0] = 1; a[n_, 0] := a[n - 1, n - 1]; a[n_, k_] := a[n, k - 1] + a[n - 1, k - 1]; Flatten[ Table[ a[n, k], {n, 0, 9}, {k, 0, n}]] (from Robert G. Wilson v Mar 27 2004)

CROSSREFS

Borders give Bell numbers A000110. Diagonals give A005493, A011965, A011966, etc., A011968, A011969. Cf. A046934, A011972 (duplicates removed).

Main diagonal is in A094577. Mirror image is in A123346.

See also A095149, A106436, A108041, A108042, A108043.

Sequence in context: A033189 A008507 A028364 this_sequence A060048 A110699 A035537

Adjacent sequences: A011968 A011969 A011970 this_sequence A011972 A011973 A011974

KEYWORD

tabl,nonn,easy,nice

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), J. H. Conway and R. K. Guy

EXTENSIONS

Peirce reference from Jon Awbrey (jawbrey(AT)att.net), Mar 11, 2002

A061396 Number of "rooted index-functional forests" (Riffs) on n nodes. Number of "rooted odd trees with only exponent symmetries" (Rotes) on 2n+1 nodes. +10
35
1, 1, 2, 6, 20, 73, 281, 1124, 4618, 19387, 82765, 358245, 1568458, 6933765, 30907194, 138760603, 626898401, 2847946941, 13001772692, 59618918444, 274463781371, 1268064807409, 5877758070220, 27325789128330, 127384553264327, 595318139942874, 2788598203340643, 13090395266913748, 61571972632103632 (list; graph; listen)
OFFSET

0,3

REFERENCES

J. Awbrey, personal journal, circa 1978. Letter to N. J. A. Sloane, 1980-Aug-04.

LINKS

V. Jovovic, Table of n, a(n) for n=0..100

J. Awbrey, Illustration of initial terms

V. Jovovic, First 100 terms

FORMULA

G.f. A(x) = 1 + x + 2*x^2 + 6*x^3 + ... satisfies A(x) = Product_{j = 0 to infinity} (1 + x^(j+1)*A(x))^a_j.

EXAMPLE

These structures come from recursive primes' factorizations of natural numbers, where the recursion proceeds on both the exponents (^k) and the indices (_k) of the primes invoked in the factorization:

2 = (prime_1)^1 = (p_1)^1, briefly, p, weight of 1 node => a(1) = 1.

3 = (prime_2)^1 = (p_2)^1, briefly, p_p, weight of 2 nodes and

4 = (prime_1)^2 = (p_1)^2, briefly, p^p, weight of 2 nodes => a(2) = 2.

MAPLE

a(0) := 1: for k from 1 to 30 do A := add(a(i)*x^i, i=0..k): B := mul((1+x^(j+1)*A)^a(j), j=0..k-1): a(k) := coeff(series(B, x, k+1), x, k): printf(`%d, `, a(k)); od:

CROSSREFS

Cf. A062504, A062860.

Sequence in context: A150139 A052884 A150140 this_sequence A104632 A150141 A150142

Adjacent sequences: A061393 A061394 A061395 this_sequence A061397 A061398 A061399

KEYWORD

nice,nonn,easy

AUTHOR

Jon Awbrey (jawbrey(AT)oakland.edu), Jun 09 2001

EXTENSIONS

Corrected and extended with Maple program by Vladeta Jovovic and David W. Wilson (davidwwilson(AT)comcast.net), Jun 20 2001

A062504 Triangle in which k-th row lists natural number values for the collection of riffs with k nodes. +10
32
1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 10, 11, 12, 13, 14, 17, 18, 19, 23, 25, 27, 32, 49, 53, 64, 81, 128, 256, 512, 65536, 15, 20, 21, 22, 24, 26, 28, 29, 31, 34, 36, 37, 38, 41, 43, 46, 48, 50, 54, 59, 61, 67, 83, 97, 98, 103, 106, 121, 125, 131, 162, 169, 227, 241, 243, 289 (list; graph; listen)
OFFSET

0,2

EXAMPLE

k | natural numbers n such that |riff(n)| = k

0 | 1;

1 | 2;

2 | 3, 4;

3 | 5, 6, 7, 8, 9, 16;

4 | 10, 11, 12, 13, 14, 17, 18, 19, 23, 25, 27, 32, 49, 53, 64, 81, 128, 256, 512, 65536;

The natural number values for the riffs with at most 3 pts are as follows (x = root):

.................o.......o..o.......o

.................|.......^..|.......^

.................v.......|..v.......|

...........o..o..o....o..o..o..o.o..o

...........|..^..|....|..|..^..|.^..^

...........v..|..v....v..v..|..v/...|

Riff:...x;.x,.x;.x,.x.x,.x,.x,.x,...x;

Value:..2;.3,.4;.5,..6.,.7,.8,.9,..16;

CROSSREFS

Cf. A061396, A062860.

Sequence in context: A048406 A081433 A032581 this_sequence A102489 A004838 A032998

Adjacent sequences: A062501 A062502 A062503 this_sequence A062505 A062506 A062507

KEYWORD

nonn

AUTHOR

Jon Awbrey (jawbrey(AT)oakland.edu), Jun 23 2001

A062537 Nodes in riff (rooted index-functional forest) for n. +10
32
0, 1, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 3, 4, 4, 4, 5, 5, 5, 4, 5, 4, 5, 4, 5, 5, 6, 5, 4, 6, 5, 6, 5, 5, 5, 6, 6, 5, 6, 5, 6, 6, 5, 6, 5, 4, 5, 6, 6, 4, 5, 7, 6, 6, 6, 5, 7, 5, 6, 6, 4, 7, 7, 5, 6, 6, 7, 6, 6, 6, 6, 6, 6, 7, 7, 6, 6, 4, 6, 5, 7, 7, 6, 7, 7, 6, 7, 7, 6, 7, 7, 7, 6, 5, 5, 7, 6, 6, 7, 5, 7, 8 (list; graph; listen)
OFFSET

1,3

COMMENT

A061396(n) gives number of times n appears in this sequence.

LINKS

J. Awbrey, Illustrations of riffs for small integers

FORMULA

a(Prod(p_i^e_i)) = Sum(a(i)+a(e_i)+1), product over nonzero e_i in prime factorization.

CROSSREFS

Sequence in context: A072643 A130260 A111393 this_sequence A097688 A025785 A087182

Adjacent sequences: A062534 A062535 A062536 this_sequence A062538 A062539 A062540

KEYWORD

nonn,easy,nice

AUTHOR

David W. Wilson (davidwwilson(AT)comcast.net), Jun 25, 2001

A062860 Smallest j with n nodes in its riff (rooted index-functional forest). +10
32
1, 2, 3, 5, 10, 15, 30, 55, 105, 165, 330, 660, 1155, 2145, 4290, 7755, 15015, 30030, 54285, 100815, 201630, 403260, 705705, 1411410, 2822820, 5645640, 11392095, 20465445, 40930890, 79744665, 159489330, 318978660, 637957320, 1321483020 (list; graph; listen)
OFFSET

0,2

COMMENT

Greatest j with n nodes in its riff is given by A014221(n+1).

CROSSREFS

Cf. A014221, A061396, A062504, A062537, A111800.

Sequence in context: A133335 A062925 A118728 this_sequence A024369 A047011 A018163

Adjacent sequences: A062857 A062858 A062859 this_sequence A062861 A062862 A062863

KEYWORD

nonn

AUTHOR

Jon Awbrey (jawbrey(AT)oakland.edu), Jun 25 2001

EXTENSIONS

More terms from David W. Wilson (davidwwilson(AT)comcast.net), Jun 26, 2001

A106177 Functional composition table for "n o m" = "n composed with m", where n and m are the "primal codes" of finite partial functions on the positive integers and 1 is the code for the empty function. +10
28
1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 4, 1, 1, 5, 2, 9, 1, 1, 1, 6, 1, 1, 1, 2, 1, 1, 7, 1, 25, 1, 3, 1, 1, 1, 1, 1, 36, 1, 2, 1, 8, 1, 1, 1, 1, 49, 1, 5, 1, 27, 1, 1, 1, 10, 3, 1, 1, 6, 1, 1, 1, 2, 1, 1, 11, 1, 1, 2, 7, 1, 125, 4, 3, 1, 1, 1, 3, 1, 100, 1, 1, 1, 216, 1, 1, 1, 4, 1, 1, 13 (list; table; graph; listen)
OFFSET

1,5

COMMENT

The right diagonal labeled by the prime power of the form j:k = (prime(j))^k contains the j^th power primes in the factorization raised to the k^th power. For example, the right diagonal labeled by the number 2 = 1:1 = (prime(1))^1 contains the power-free parts of each positive integer, specifically A055231 and the right diagonal labeled by the number 4 = 1:2 = (prime(1))^2 contains the squares of the square-free parts of positive integers.

In general, then the right diagonal labeled by m = (j_i : k_i)_i = Product_i prime(j_i)^(k_i) contains the product over i of the (j_i)th power primes in the factorization raised to the (k_i)th powers.

For example, the operator 5 = 3:1 extracts the 3rd power primes in the factorization of each n and raises them to the first power, thus sending 8 = 1:3 to 2 = 1:1, 27 = 2:3 to 3 = 2:1 and so on.

EXAMPLE

` ` ` ` ` ` ` ` ` ` `n o m

` ` ` ` ` ` ` ` ` ` ` \ /

` ` ` ` ` ` ` ` ` ` `1 . 1

` ` ` ` ` ` ` ` ` ` \ / \ /

` ` ` ` ` ` ` ` ` `2 . 1 . 2

` ` ` ` ` ` ` ` ` \ / \ / \ /

` ` ` ` ` ` ` ` `3 . 1 . 1 . 3

` ` ` ` ` ` ` ` \ / \ / \ / \ /

` ` ` ` ` ` ` `4 . 1 . 2 . 1 . 4

` ` ` ` ` ` ` \ / \ / \ / \ / \ /

` ` ` ` ` ` `5 . 1 . 3 . 1 . 1 . 5

` ` ` ` ` ` \ / \ / \ / \ / \ / \ /

` ` ` ` ` `6 . 1 . 1 . 1 . 4 . 1 . 6

` ` ` ` ` \ / \ / \ / \ / \ / \ / \ /

` ` ` ` `7 . 1 . 5 . 2 . 9 . 1 . 1 . 7

` ` ` ` \ / \ / \ / \ / \ / \ / \ / \ /

` ` ` `8 . 1 . 6 . 1 . 1 . 1 . 2 . 1 . 8

` ` ` \ / \ / \ / \ / \ / \ / \ / \ / \ /

` ` `9 . 1 . 7 . 1 . 25. 1 . 3 . 1 . 1 . 9

` ` \ / \ / \ / \ / \ / \ / \ / \ / \ / \ /

` 10 . 1 . 1 . 1 . 36. 1 . 2 . 1 . 8 . 1 . 10

Primal codes of finite partial functions on positive integers:

1 = { }

2 = 1:1

3 = 2:1

4 = 1:2

5 = 3:1

6 = 1:1 2:1

7 = 4:1

8 = 1:3

9 = 2:2

10 = 1:1 3:1

11 = 5:1

12 = 1:2 2:1

13 = 6:1

14 = 1:1 4:1

15 = 2:1 3:1

16 = 1:4

17 = 7:1

18 = 1:1 2:2

19 = 8:1

20 = 1:2 3:1

CROSSREFS

Cf. A061396, A062504, A062537, A062860, A106178.

Sequence in context: A147867 A114118 A146014 this_sequence A135010 A138138 A080209

Adjacent sequences: A106174 A106175 A106176 this_sequence A106178 A106179 A106180

KEYWORD

nonn,tabl

AUTHOR

Jon Awbrey (jawbrey(AT)att.net), May 23 2005

A109301 a(n) = rhig(n) = rote height in gammas of n, where the "rote" corresponding to a positive integer n is a graph derived from the primes factorization of n, as illustrated in the comments. +10
27
0, 1, 2, 2, 3, 2, 3, 3, 2, 3, 4, 2, 3, 3, 3, 3, 4, 2, 4, 3, 3, 4, 3, 3, 3, 3, 3, 3, 4, 3, 5, 4, 4, 4, 3, 2, 3, 4, 3, 3, 4, 3, 4, 4, 3, 3, 4, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 4, 5, 3, 3, 5, 3, 3, 3, 4, 5, 4, 3, 3, 4, 3, 4, 3, 3, 4, 4, 3, 5, 3, 3, 4, 4, 3, 4, 4, 4, 4, 4, 3, 3, 3, 5, 4, 4, 4, 4, 3, 4, 3 (list; graph; listen)
OFFSET

1,3

COMMENT

Table of Rotes and Primal Functions for Positive Integers from 1 to 40

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` o-o ` ` ` ` o-o ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` | ` ` ` ` ` | ` ` ` ` ` ` `

` ` ` ` ` ` ` o-o ` ` ` ` ` o-o ` ` ` ` ` o-o ` ` ` ` ` o-o ` ` ` ` ` `

` ` ` ` ` ` ` | ` ` ` ` ` ` | ` ` ` ` ` ` | ` ` ` ` ` ` | ` ` ` ` ` ` `

O ` ` ` ` ` ` O ` ` ` ` ` ` O ` ` ` ` ` ` O ` ` ` ` ` ` O ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

{ } ` ` ` ` ` 1:1 ` ` ` ` ` 2:1 ` ` ` ` ` 1:2 ` ` ` ` ` 3:1 ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

1 ` ` ` ` ` ` 2 ` ` ` ` ` ` 3 ` ` ` ` ` ` 4 ` ` ` ` ` ` 5 ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` o-o ` ` ` ` ` o-o ` ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` `

` ` ` ` ` ` ` ` | ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` `

` ` o-o ` ` ` o-o ` ` ` ` ` ` o-o ` ` ` ` o-o o-o ` ` ` ` ` o-o ` ` ` `

` ` | ` ` ` ` | ` ` ` ` ` ` ` | ` ` ` ` ` | ` | ` ` ` ` ` ` | ` ` ` ` `

o-o o-o ` ` ` o-o ` ` ` ` ` o-o ` ` ` ` ` o---o ` ` ` ` o-o o-o ` ` ` `

| ` | ` ` ` ` | ` ` ` ` ` ` | ` ` ` ` ` ` | ` ` ` ` ` ` | ` | ` ` ` ` `

O===O ` ` ` ` O ` ` ` ` ` ` O ` ` ` ` ` ` O ` ` ` ` ` ` O===O ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

1:1 2:1 ` ` ` 4:1 ` ` ` ` ` 1:3 ` ` ` ` ` 2:2 ` ` ` ` ` 1:1 3:1 ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

6 ` ` ` ` ` ` 7 ` ` ` ` ` ` 8 ` ` ` ` ` ` 9 ` ` ` ` ` ` 10` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

o-o ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

| ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

o-o ` ` ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` o-o ` ` ` ` o-o ` ` ` `

| ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` | ` ` ` ` ` | ` ` ` ` `

o-o ` ` ` ` ` ` o-o o-o ` ` o-o o-o ` ` ` ` ` o-o ` ` ` o-o o-o ` ` ` `

| ` ` ` ` ` ` ` | ` | ` ` ` | ` | ` ` ` ` ` ` | ` ` ` ` | ` | ` ` ` ` `

o-o ` ` ` ` ` o-o ` o-o ` ` o===o-o ` ` ` o-o o-o ` ` ` o-o o-o ` ` ` `

| ` ` ` ` ` ` | ` ` | ` ` ` | ` ` ` ` ` ` | ` | ` ` ` ` | ` | ` ` ` ` `

O ` ` ` ` ` ` O=====O ` ` ` O ` ` ` ` ` ` O===O ` ` ` ` O===O ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

5:1 ` ` ` ` ` 1:2 2:1 ` ` ` 6:1 ` ` ` ` ` 1:1 4:1 ` ` ` 2:1 3:1 ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

11` ` ` ` ` ` 12` ` ` ` ` ` 13` ` ` ` ` ` 14` ` ` ` ` ` 15` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` `

` ` o-o ` ` ` o-o ` ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` ` o-o ` ` `

` ` | ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` | ` ` ` `

` o-o ` ` ` ` o-o ` ` ` ` ` ` ` o-o o-o ` o-o ` ` ` ` ` ` o-o o-o ` ` `

` | ` ` ` ` ` | ` ` ` ` ` ` ` ` | ` | ` ` | ` ` ` ` ` ` ` | ` | ` ` ` `

o-o ` ` ` ` ` o-o ` ` ` ` ` o-o o---o ` ` o-o ` ` ` ` ` o-o ` o-o ` ` `

| ` ` ` ` ` ` | ` ` ` ` ` ` | ` | ` ` ` ` | ` ` ` ` ` ` | ` ` | ` ` ` `

O ` ` ` ` ` ` O ` ` ` ` ` ` O===O ` ` ` ` O ` ` ` ` ` ` O=====O ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

1:4 ` ` ` ` ` 7:1 ` ` ` ` ` 1:1 2:2 ` ` ` 8:1 ` ` ` ` ` 1:2 3:1 ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

16` ` ` ` ` ` 17` ` ` ` ` ` 18` ` ` ` ` ` 19` ` ` ` ` ` 20` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` o-o ` ` ` ` o-o ` ` ` o-o o-o ` ` ` ` o-o ` ` ` ` o-o ` ` ` ` ` `

` ` ` | ` ` ` ` ` | ` ` ` ` | ` | ` ` ` ` ` | ` ` ` ` ` | ` ` ` ` ` ` `

o-o o-o ` ` ` ` ` o-o ` ` ` o---o ` ` ` ` ` o-o o-o ` ` o-o o-o ` ` ` `

| ` | ` ` ` ` ` ` | ` ` ` ` | ` ` ` ` ` ` ` | ` | ` ` ` | ` | ` ` ` ` `

o-o o-o ` ` ` o-o o-o ` ` ` o-o ` ` ` ` ` o-o ` o-o ` ` o---o ` ` ` ` `

| ` | ` ` ` ` | ` | ` ` ` ` | ` ` ` ` ` ` | ` ` | ` ` ` | ` ` ` ` ` ` `

O===O ` ` ` ` O===O ` ` ` ` O ` ` ` ` ` ` O=====O ` ` ` O ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

2:1 4:1 ` ` ` 1:1 5:1 ` ` ` 9:1 ` ` ` ` ` 1:3 2:1 ` ` ` 3:2 ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

21` ` ` ` ` ` 22` ` ` ` ` ` 23` ` ` ` ` ` 24` ` ` ` ` ` 25` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` o-o ` ` ` o-o ` ` ` ` ` ` ` o-o ` ` ` o-o ` ` ` ` ` ` ` o-o ` `

` ` ` ` | ` ` ` ` | ` ` ` ` ` ` ` ` | ` ` ` ` | ` ` ` ` ` ` ` ` | ` ` `

` ` o-o o-o ` o-o o-o ` ` ` ` o-o o-o ` ` o-o o-o ` ` ` ` ` o-o o-o ` `

` ` | ` | ` ` | ` | ` ` ` ` ` | ` | ` ` ` | ` | ` ` ` ` ` ` | ` | ` ` `

o-o o===o-o ` o---o ` ` ` ` o-o ` o-o ` ` o===o-o ` ` ` o-o o-o o-o ` `

| ` | ` ` ` ` | ` ` ` ` ` ` | ` ` | ` ` ` | ` ` ` ` ` ` | ` | ` | ` ` `

O===O ` ` ` ` O ` ` ` ` ` ` O=====O ` ` ` O ` ` ` ` ` ` O===O===O ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

1:1 6:1 ` ` ` 2:3 ` ` ` ` ` 1:2 4:1 ` ` ` 10:1` ` ` ` ` 1:1 2:1 3:1 ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

26` ` ` ` ` ` 27` ` ` ` ` ` 28` ` ` ` ` ` 29` ` ` ` ` ` 30` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

o-o ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

| ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

o-o ` ` ` ` ` ` o-o ` ` ` ` ` ` o-o ` ` ` ` ` ` o-o ` ` ` ` ` ` ` ` ` `

| ` ` ` ` ` ` ` | ` ` ` ` ` ` ` | ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` `

o-o ` ` ` ` ` ` o-o ` ` ` ` ` ` o-o ` ` ` ` ` o-o ` ` ` o-o ` o-o ` ` `

| ` ` ` ` ` ` ` | ` ` ` ` ` ` ` | ` ` ` ` ` ` | ` ` ` ` | ` ` | ` ` ` `

o-o ` ` ` ` ` ` o-o ` ` ` ` o-o o-o ` ` ` ` ` o-o ` ` ` o-o o-o ` ` ` `

| ` ` ` ` ` ` ` | ` ` ` ` ` | ` | ` ` ` ` ` ` | ` ` ` ` | ` | ` ` ` ` `

o-o ` ` ` ` ` o-o ` ` ` ` ` o-o o-o ` ` ` o-o o-o ` ` ` o-o o-o ` ` ` `

| ` ` ` ` ` ` | ` ` ` ` ` ` | ` | ` ` ` ` | ` | ` ` ` ` | ` | ` ` ` ` `

O ` ` ` ` ` ` O ` ` ` ` ` ` O===O ` ` ` ` O===O ` ` ` ` O===O ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

11:1` ` ` ` ` 1:5 ` ` ` ` ` 2:1 5:1 ` ` ` 1:1 7:1 ` ` ` 3:1 4:1 ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

31` ` ` ` ` ` 32` ` ` ` ` ` 33` ` ` ` ` ` 34` ` ` ` ` ` 35` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` o-o ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` | ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` o-o o-o ` ` ` ` ` o-o ` ` ` ` ` ` o-o ` ` o-o o-o ` ` `

` ` ` ` ` ` ` ` | ` | ` ` ` ` ` ` | ` ` ` ` ` ` ` | ` ` ` | ` | ` ` ` `

` o-o o-o o-o o-o ` o-o ` ` ` ` o-o ` ` ` o-o o-o o-o ` ` o-o o-o ` ` `

` | ` | ` | ` | ` ` | ` ` ` ` ` | ` ` ` ` | ` | ` | ` ` ` | ` | ` ` ` `

o-o ` o---o ` o=====o-o ` ` o-o o-o ` ` ` o-o o===o-o ` o-o ` o-o ` ` `

| ` ` | ` ` ` | ` ` ` ` ` ` | ` | ` ` ` ` | ` | ` ` ` ` | ` ` | ` ` ` `

O=====O ` ` ` O ` ` ` ` ` ` O===O ` ` ` ` O===O ` ` ` ` O=====O ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

1:2 2:2 ` ` ` 12:1` ` ` ` ` 1:1 8:1 ` ` ` 2:1 6:1 ` ` ` 1:3 3:1 ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

36` ` ` ` ` ` 37` ` ` ` ` ` 38` ` ` ` ` ` 39` ` ` ` ` ` 40` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

In these Figures, "extended lines of identity" like o===o

indicate identified nodes and capital O is the root node.

The rote height in gammas is found by finding the number

of graphs of the following shape between the root and one

of the highest nodes of the tree:

o--o

|

o

A sequence like this, that can be regarded as a nonnegative integer

measure on positive integers, may have as many as 3 other sequences

associated with it. Given that the fiber of a function f at n is all

the domain elements that map to n, we always have the fiber minimum

or minimum inverse function and may also have the fiber cardinality

and the fiber maximum or maximum inverse function. For A109301, the

minimum inverse is A007097(n) = min {k : A109301(k) = n}, giving the

first positive integer whose rote height is n, the fiber cardinality

is A109300, giving the number of positive integers of rote height n,

while the maximum inverse, g(n) = max {k : A109301(k) = n}, giving

the last positive integer whose rote height is n, has the following

initial terms: g(0) = { } = 1, g(1) = 1:1 = 2, g(2) = 1:2 2:2 = 36,

while g(3) = 1:36 2:36 3:36 4:36 6:36 9:36 12:36 18:36 36:36 =

(2 3 5 7 13 23 37 61 151)^36 = 21399271530^36 = roughly

7.840858554516122655953405327738 x 10^371.

FORMULA

Writing (prime(i))^j as i:j, the primes factorization of a positive integer n can be written as n = prod_(k = 1 to m) i(k):j(k). This sets up the formula: rhig(n) = 1 + max_(k = 1 to m) {rhig(i(k)), rhig(j(k))}, where rhig(1) = 0.

EXAMPLE

Writing (prime(i))^j as i:j, we have:

802701 = 2:2 8638:1

8638 = 1:1 4:1 113:1

113 = 30:1

30 = 1:1 2:1 3:1

4 = 1:2

3 = 2:1

2 = 1:1

1 = { }

So rote(802701) is the graph:

` ` ` ` ` ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` o-o

` ` ` ` ` ` ` ` ` ` ` ` ` | `

` ` ` ` ` ` ` ` ` ` ` o-o o-o

` ` ` ` ` ` ` ` ` ` ` | ` | `

` ` ` ` ` ` ` o-o o-o o-o o-o

` ` ` ` ` ` ` | ` | ` | ` | `

` ` ` ` ` ` o-o ` o===o===o-o

` ` ` ` ` ` | ` ` | ` ` ` ` `

o-o o-o o-o o-o ` o---------o

| ` | ` | ` | ` ` | ` ` ` ` `

o---o ` o===o=====o---------o

| ` ` ` | ` ` ` ` ` ` ` ` ` `

O=======O ` ` ` ` ` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` `

Therefore rhig(802701) = 6.

CROSSREFS

Cf. A007097, A050924, A061396, A062504, A062537, A062860.

Cf. A106177, A108352, A108371, A109300, A111791 to A111800.

Sequence in context: A072832 A080328 A031266 this_sequence A107573 A081308 A070210

Adjacent sequences: A109298 A109299 A109300 this_sequence A109302 A109303 A109304

KEYWORD

nonn

AUTHOR

Jon Awbrey (jawbrey(AT)att.net), Jun 24 2005 - Jul 08 2005

A055932 Numbers with property that all prime divisors are consecutive primes starting at 2. +10
26
1, 2, 4, 6, 8, 12, 16, 18, 24, 30, 32, 36, 48, 54, 60, 64, 72, 90, 96, 108, 120, 128, 144, 150, 162, 180, 192, 210, 216, 240, 256, 270, 288, 300, 324, 360, 384, 420, 432, 450, 480, 486, 512, 540, 576, 600, 630, 648, 720, 750, 768, 810, 840, 864, 900, 960, 972 (list; graph; listen)
OFFSET

1,2

COMMENT

a(n) is also the sorted version of A057335 which is generated recursively using the formula A057335 = A057334 * A057335(repeated), where A057334 = A000040(A000120). - Alford Arnold (arnold1940(AT)aol.com), Nov 11 2001

Square-free kernels of these numbers are primorial numbers. See A080404. - Labos E. (labos(AT)ana.sote.hu), Mar 19 2003

If u and v are terms then so is u*v. - Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Nov 24 2004

Except for the initial value a(0) = 1, a(n) gives the canonical primal code of the n-th finite sequence of positive integers, where n = (prime_1)^c_1 * ... * (prime_k)^c_k is the code for the finite sequence c_1, ..., c_k. See examples of primal codes at A106177. - Jon Awbrey (jawbrey(AT)att.net), Jun 22 2005

LINKS

Franklin T. Adams-Watters, Table of n, a(n) for n = 1..1001

Leroy Quet, Home Page (listed in lieu of email address)

EXAMPLE

60 is included because 60 = 2^2 * 3 * 5 and 2, 3 and 5 are consecutive primes beginning at 2.

Sequence A057335 begins

1..2..4..6..8..12..18..30..16..24..36..60..54..90..150..210... which is equal to

1..2..2..3..2...3...3...5...2...3...3...5...3...5....5....7... times

1..1..2..2..4...4...6...6...8...8..12..12..18..18...30...30...

MATHEMATICA

Select[Range[1000], #==1||FactorInteger[ # ][[ -1, 1]]==Prime[Length[FactorInteger[ # ]]]&]

CROSSREFS

Cf. A057335, A056808, A025487, A007947, A002110, A080404, A106177.

Cf. A124829, A124830, A124831, A124833.

Sequence in context: A140110 A128397 A120383 this_sequence A140067 A067946 A145853

Adjacent sequences: A055929 A055930 A055931 this_sequence A055933 A055934 A055935

KEYWORD

easy,nonn

AUTHOR

Leroy Quet Jul 17 2000

A109300 a(n) = number of positive integers whose rote height in gammas is n. +10
23
1, 1, 7, 999999991 (list; graph; listen)
OFFSET

0,3

COMMENT

a(n) is the sequence of first differences of A050924. Conversely, A050924 is the sequence of partial sums of a(n). This can be seen as follows. Let P(0) c P(1) c ... c P(n) c ... be an increasing sequence of sets of partial functions that is defined by the recursion: P(0) = {the empty function}, P(n+1) = {partial functions: P(n) -> P(n)}. Then |P(n)| = A050924(n+1) = number of positive integers of rote height at most n, hence |P(n)| - |P(n-1)| = a(n) = number of positive integers of rote height exactly n.

FORMULA

a(n) is defined by the recursion a(n+1) = (b(n) + 1)^b(n) - b(n), where a(0) = 1 and b(n) = Sum_[0, n] a(i).

EXAMPLE

Table of Rotes and Primal Functions for Positive Integers of Rote Height 2

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

o-o ` ` o-o ` ` ` o-o ` o-o o-o ` ` o-o o-o ` ` ` o-o o-o ` ` o-o o-o o-o

| ` ` ` | ` ` ` ` | ` ` | ` | ` ` ` | ` | ` ` ` ` | ` | ` ` ` | ` | ` | `

o-o ` o-o ` ` o-o o-o ` o---o ` ` o-o ` o-o ` o-o o---o ` ` o-o ` o---o `

| ` ` | ` ` ` | ` | ` ` | ` ` ` ` | ` ` | ` ` | ` | ` ` ` ` | ` ` | ` ` `

O ` ` O ` ` ` O===O ` ` O ` ` ` ` O=====O ` ` O===O ` ` ` ` O=====O ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

2:1 ` 1:2 ` ` 1:1 2:1 ` 2:2 ` ` ` 1:2 2:1 ` ` 1:1 2:2 ` ` ` 1:2 2:2 ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

3 ` ` 4 ` ` ` 6 ` ` ` ` 9 ` ` ` ` 12` ` ` ` ` 18` ` ` ` ` ` 36` ` ` ` ` `

` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `

CROSSREFS

Cf. A007097, A050924, A061396, A062504, A062537, A062860.

Cf. A109301, A106177, A108352, A108371, A111791 to A111800.

Sequence in context: A076910 A116257 A075984 this_sequence A124272 A128820 A067485

Adjacent sequences: A109297 A109298 A109299 this_sequence A109301 A109302 A109303

KEYWORD

nonn

AUTHOR

Jon Awbrey (jawbrey(AT)att.net), Jul 04 2005, revised Sep 06 2005

page 1 2 3 4 5 6

Search completed in 0.018 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | The OEIS Foundation | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified February 9 11:24 EST 2010. Contains 172296 sequences.


AT&T Labs Research